m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/NoSuchAttributeException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/pl/edu/mimuw/cloudatlas/interpreter/NoSuchAttributeException.java')
-rw-r--r--src/main/java/pl/edu/mimuw/cloudatlas/interpreter/NoSuchAttributeException.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/NoSuchAttributeException.java b/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/NoSuchAttributeException.java
index b85438c..800bd09 100644
--- a/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/NoSuchAttributeException.java
+++ b/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/NoSuchAttributeException.java
@@ -26,14 +26,14 @@ package pl.edu.mimuw.cloudatlas.interpreter;
@SuppressWarnings("serial")
public class NoSuchAttributeException extends InterpreterException {
- private final String attribute;
+ private final String attribute;
- protected NoSuchAttributeException(String attribute) {
- super("Attribute " + attribute + " does not exist.");
- this.attribute = attribute;
- }
+ protected NoSuchAttributeException(String attribute) {
+ super("Attribute " + attribute + " does not exist.");
+ this.attribute = attribute;
+ }
- public String getAttribute() {
- return attribute;
- }
+ public String getAttribute() {
+ return attribute;
+ }
}