Package de.xima.fc.exceptions
Class InvalidUriPathSegmentNameException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- de.xima.fc.exceptions.InvalidUriPathSegmentNameException
-
- All Implemented Interfaces:
Serializable
public class InvalidUriPathSegmentNameException extends IllegalArgumentException
Exception when a name is encountered that cannot be used literally as aURI path segment
.- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidUriPathSegmentNameException(String message)
InvalidUriPathSegmentNameException(String message, Throwable cause)
InvalidUriPathSegmentNameException(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
-
InvalidUriPathSegmentNameException
public InvalidUriPathSegmentNameException(String message, Throwable cause)
- Parameters:
message
- Message describing the error in more detail.cause
- The underlying cause of the error.
-
InvalidUriPathSegmentNameException
public InvalidUriPathSegmentNameException(String message)
- Parameters:
message
- Message describing the error in more detail.
-
InvalidUriPathSegmentNameException
public InvalidUriPathSegmentNameException(Throwable cause)
- Parameters:
cause
- The underlying cause of the error.
-
-