Package com.tangosol.io.pof.reflect
Class PofNavigationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.tangosol.io.pof.reflect.PofNavigationException
-
- All Implemented Interfaces:
Serializable
public class PofNavigationException extends RuntimeException
PofNavigationException indicates a failure to navigate aPofValue
hierarchy.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PofNavigationException()
Construct a PofNavigationException.PofNavigationException(String message)
Construct a PofNavigationException with a specified detail message.PofNavigationException(String message, Throwable cause)
Construct a PofNavigationException with a specified detail message and a cause.PofNavigationException(Throwable cause)
Construct a PofNavigationException with a specified 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
-
PofNavigationException
public PofNavigationException()
Construct a PofNavigationException.
-
PofNavigationException
public PofNavigationException(String message)
Construct a PofNavigationException with a specified detail message.- Parameters:
message
- the String that contains a detailed message
-
PofNavigationException
public PofNavigationException(String message, Throwable cause)
Construct a PofNavigationException with a specified detail message and a cause.- Parameters:
message
- the String that contains a detailed messagecause
- the underlying cause for this exception
-
PofNavigationException
public PofNavigationException(Throwable cause)
Construct a PofNavigationException with a specified cause.- Parameters:
cause
- the underlying cause for this exception
-
-