Class MetadataException
Defines the base class for the namespace exceptions.
[Serializable]
public class MetadataException : LinqToDBException, ISerializable, _Exception
- Inheritance
-
objectMetadataException
- Implements
- Inherited Members
- Extension Methods
Remarks
This class is the base class for exceptions that may occur during execution of the namespace members.
Constructors
MetadataException(string)
Initializes a new instance of the MetadataException class with the specified error message.
public MetadataException(string message)
Parameters
messagestringThe message to display to the client when the exception is thrown.
- See Also
MetadataException(string, Exception)
Initializes a new instance of the MetadataException class with the specified error message and InnerException property.
public MetadataException(string message, Exception innerException)
Parameters
messagestringThe message to display to the client when the exception is thrown.
innerExceptionExceptionThe InnerException, if any, that threw the current exception.
- See Also