Package org.onlab.util
Class ItemNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.onlab.util.ItemNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class ItemNotFoundException extends java.lang.RuntimeException
Represents condition where an item is not found or not available.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ItemNotFoundException()
Creates a new exception with no message.ItemNotFoundException(java.lang.String message)
Creates a new exception with the supplied message.ItemNotFoundException(java.lang.String message, java.lang.Throwable cause)
Creates a new exception with the supplied message and cause.
-
-
-
Constructor Detail
-
ItemNotFoundException
public ItemNotFoundException()
Creates a new exception with no message.
-
ItemNotFoundException
public ItemNotFoundException(java.lang.String message)
Creates a new exception with the supplied message.- Parameters:
message
- error message
-
ItemNotFoundException
public ItemNotFoundException(java.lang.String message, java.lang.Throwable cause)
Creates a new exception with the supplied message and cause.- Parameters:
message
- error messagecause
- cause of the error
-
-