java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
edu.hm.hafner.analysis.ParsingException
- Alle implementierten Schnittstellen:
Serializable
Indicates that during parsing a non recoverable error has been occurred.
- Autor:
- Ullrich Hafner
- Siehe auch:
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungParsingException(String messageFormat, Object... args) Constructs a newParsingExceptionwith the specified message.ParsingException(Throwable cause) Constructs a newParsingExceptionwith the specified cause.ParsingException(Throwable cause, String messageFormat, Object... args) Constructs a newParsingExceptionwith the specified cause and message. -
Methodenübersicht
Von Klasse geerbte Methoden java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Konstruktordetails
-
ParsingException
Constructs a newParsingExceptionwith the specified cause.- Parameter:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method).
-
ParsingException
Constructs a newParsingExceptionwith the specified cause and message.- Parameter:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method).messageFormat- the message as a format string as described in Format string syntaxargs- Arguments referenced by the format specifiers in the format string. If there are more arguments than format specifiers, the extra arguments are ignored. The number of arguments is variable and may be zero. The maximum number of arguments is limited by the maximum dimension of a Java array as defined by The Java™ Virtual Machine Specification. The behaviour on anullargument depends on the conversion.
-
ParsingException
Constructs a newParsingExceptionwith the specified message.- Parameter:
messageFormat- the message as a format string as described in Format string syntaxargs- Arguments referenced by the format specifiers in the format string. If there are more arguments than format specifiers, the extra arguments are ignored. The number of arguments is variable and may be zero. The maximum number of arguments is limited by the maximum dimension of a Java array as defined by The Java™ Virtual Machine Specification. The behaviour on anullargument depends on the conversion.
-