Class ApocException
This exception is thrown by Apoc when an error occurs.
Inheritance
Inherited Members
Namespace: Telerik.Apoc
Assembly: TelerikData.dll
Syntax
public class ApocException : ApplicationException, ISerializable, _Exception
Constructors
ApocException(Exception)
Initialises a new instance of the ApocException class.
Declaration
public ApocException(Exception innerException)
Parameters
System.Exception
innerException
The exception that is the cause of the current exception |
Remarks
The System.Exception.Message property will be initialised to innerException.Message
ApocException(String)
Initialises a new instance of the ApocException class.
Declaration
public ApocException(string message)
Parameters
System.String
message
The error message that explains the reason for this exception |
ApocException(String, Exception)
Initialises a new instance of the ApocException class.
Declaration
public ApocException(string message, Exception innerException)
Parameters
System.String
message
The error message that explains the reason for this exception |
System.Exception
innerException
The exception that is the cause of the current exception |