C# Class Spring.Data.GemFire.GemFireSystemException

GemFire-specific subclass of UncategorizedDataAccessException, for GemFire system errors that do not match any concrete Spring.Data.Dao exceptions.
Inheritance: Spring.Dao.UncategorizedDataAccessException
Datei anzeigen Open project: spring-projects/spring-gemfire-net

Public Methods

Method Description
GemFireSystemException ( ) : System

Initializes a new instance of the GemFireSystemException class.

GemFireSystemException ( GemFireException cause ) : System

Initializes a new instance of the GemFireSystemException class.

GemFireSystemException ( string message ) : System

Initializes a new instance of the GemFireSystemException class.

GemFireSystemException ( string message, Exception rootCause ) : System

Creates a new instance of the GemFireSystemException class with the specified message and root cause.

Protected Methods

Method Description
GemFireSystemException ( SerializationInfo info, StreamingContext context ) : System

Creates a new instance of the GemFireSystemException class.

Method Details

GemFireSystemException() public method

Initializes a new instance of the GemFireSystemException class.
public GemFireSystemException ( ) : System
return System

GemFireSystemException() public method

Initializes a new instance of the GemFireSystemException class.
public GemFireSystemException ( GemFireException cause ) : System
cause GemFireException The cause.
return System

GemFireSystemException() protected method

Creates a new instance of the GemFireSystemException class.
protected GemFireSystemException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo /// The /// that holds the serialized object data about the exception being thrown. ///
context System.Runtime.Serialization.StreamingContext /// The /// that contains contextual information about the source or destination. ///
return System

GemFireSystemException() public method

Initializes a new instance of the GemFireSystemException class.
public GemFireSystemException ( string message ) : System
message string The message.
return System

GemFireSystemException() public method

Creates a new instance of the GemFireSystemException class with the specified message and root cause.
public GemFireSystemException ( string message, Exception rootCause ) : System
message string /// A message about the exception. ///
rootCause System.Exception /// The root exception that is being wrapped. ///
return System