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
public class ExtractorSyntaxException extends SSSOMFormatException
An exception thrown when parsing an invalid “extractor expression”.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExtractorSyntaxException()Creates a new instance with a generic error message.ExtractorSyntaxException(String msg)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 Detail
-
ExtractorSyntaxException
public ExtractorSyntaxException()
Creates a new instance with a generic error message.
-
ExtractorSyntaxException
public ExtractorSyntaxException(String msg)
Creates a new instance with the specified error message.- Parameters:
msg- A message describing the error;
-
-