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