Class ExtractorSyntaxException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.incenp.obofoundry.sssom.SSSOMFormatException
org.incenp.obofoundry.sssom.extract.ExtractorSyntaxException
- All Implemented Interfaces:
Serializable
An exception thrown when parsing an invalid “extractor expression”.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance with a generic error message.Creates a new instance with the specified error message.ExtractorSyntaxException
(String msg, Object... args) Creates a new instance with a constructed error message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExtractorSyntaxException
public ExtractorSyntaxException()Creates a new instance with a generic error message. -
ExtractorSyntaxException
Creates a new instance with the specified error message.- Parameters:
msg
- A message describing the error;
-
ExtractorSyntaxException
Creates a new instance with a constructed error message.- Parameters:
msg
- The format string used to construct the error message.args
- The arguments to use in the format string.
-