Class InvalidStringFormatException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- org.molgenis.vibe.core.exceptions.InvalidStringFormatException
-
- All Implemented Interfaces:
Serializable
public class InvalidStringFormatException extends IllegalArgumentException
Thrown to indicate that a method has been given aStringthat is formatted in an inappropriate/unexpected way. For example, aStringthat is expected to adhere to a specific regular expression (but does not adhere to this).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidStringFormatException()Constructs anInvalidStringFormatExceptionwithnullas its error detail message.InvalidStringFormatException(String message)InvalidStringFormatException(String message, Throwable cause)InvalidStringFormatException(Throwable cause)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidStringFormatException
public InvalidStringFormatException()
Constructs anInvalidStringFormatExceptionwithnullas its error detail message.
-
InvalidStringFormatException
public InvalidStringFormatException(String message)
-
InvalidStringFormatException
public InvalidStringFormatException(Throwable cause)
-
-