Package com.iizix.urn
Class URNException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.iizix.urn.URNException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
MalformedURNException
,NIDException
,NSSException
,UnknownNIDException
public class URNException extends java.lang.Exception
Base exceptions thrown for the URN's.- Author:
- Christopher Mindus
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description URNException(java.lang.String message, java.lang.String urn)
Constructs the exception with the URN string.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMessage()
Returns the detail message string of this throwable.
-
-
-
Constructor Detail
-
URNException
public URNException(java.lang.String message, java.lang.String urn)
Constructs the exception with the URN string.- Parameters:
message
- The detail message. The detail message is saved for later retrieval by thegetMessage()
method.urn
- The URN string.
-
-