Class SemanticErrorDescription
- java.lang.Object
-
- net.ssehub.easy.producer.core.varMod.container.SemanticErrorDescription
-
public class SemanticErrorDescription extends java.lang.ObjectData class for describing semantic errors occurred during parsing a Model file.- Author:
- El-Sharkawy
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Stringdescriptionprivate java.lang.Stringlocation
-
Constructor Summary
Constructors Constructor Description SemanticErrorDescription(java.lang.String location, java.lang.String description)Sole constructor for this class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Getter for the error description.java.lang.StringgetLocation()Getter for the location of the file.
-
-
-
Constructor Detail
-
SemanticErrorDescription
public SemanticErrorDescription(java.lang.String location, java.lang.String description)Sole constructor for this class.- Parameters:
location- The location of the parsed file (could be a URI or a path in the file system).description- Description of the error occurred during parsing.
-
-