Class WrongPatternException
java.lang.Object
java.lang.Throwable
java.lang.Exception
cz.metacentrum.perun.core.api.exceptions.PerunException
cz.metacentrum.perun.core.api.exceptions.WrongPatternException
- All Implemented Interfaces:
Serializable
Pattern is not well-formed.
Is to be thrown when the generative pattern of hostname e.g. local[00-12]domain has a wrong syntax.
- Author:
- Jirka Mauritz invalid input: '<'jirmauritz@gmail.com>
- See Also:
-
Constructor Summary
ConstructorDescriptionWrongPatternException
(String message) Simple constructor with a messageWrongPatternException
(String message, Throwable cause) Constructor with a message and Throwable objectWrongPatternException
(Throwable cause) Constructor with a Throwable object -
Method Summary
Methods inherited from class cz.metacentrum.perun.core.api.exceptions.PerunException
getErrorId, getFriendlyMessageTemplate, getMessage, getName, setErrorId
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
WrongPatternException
Simple constructor with a message- Parameters:
message
- message with details about the cause
-
WrongPatternException
Constructor with a message and Throwable object- Parameters:
message
- message with details about the causecause
- Throwable that caused throwing of this exception
-
WrongPatternException
Constructor with a Throwable object- Parameters:
cause
- Throwable that caused throwing of this exception
-