com.supermap.services.components.spi
Class NotSupportedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.supermap.services.components.spi.NotSupportedException
-
- All Implemented Interfaces:
- java.io.Serializable
public class NotSupportedException extends java.lang.RuntimeExceptionDoes not support exceptions.
The exception is thrown for the operation that is not supported.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description NotSupportedException()Default constructor.NotSupportedException(java.lang.String message)Constructs a new exception with specified details.NotSupportedException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with specified details and causes.NotSupportedException(java.lang.Throwable cause)Constructs a new exception with causes.
-
-
-
Constructor Detail
-
NotSupportedException
public NotSupportedException()
Default constructor.
-
NotSupportedException
public NotSupportedException(java.lang.String message)
Constructs a new exception with specified details.
- Parameters:
message- detailed message.
-
NotSupportedException
public NotSupportedException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with specified details and causes.
- Parameters:
message- detailed message.cause- The cause.
-
NotSupportedException
public NotSupportedException(java.lang.Throwable cause)
Constructs a new exception with causes.
- Parameters:
cause- The cause.
-
-