System.ItemNotFoundException.ItemNotFoundException C# (CSharp) Method

ItemNotFoundException() public method

Initializes a new instance of the ItemNotFoundException class.
public ItemNotFoundException ( string message, Exception innerException ) : System.Runtime.Serialization
message string The error message that explains the reason for the exception.
innerException Exception The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
return System.Runtime.Serialization
        public ItemNotFoundException(string message, Exception innerException)
            : base(message, innerException)
        {
        }

Same methods

ItemNotFoundException::ItemNotFoundException ( ) : System.Runtime.Serialization
ItemNotFoundException::ItemNotFoundException ( SerializationInfo serializationInfo, StreamingContext streamingContext ) : System.Runtime.Serialization
ItemNotFoundException::ItemNotFoundException ( string message ) : System.Runtime.Serialization
ItemNotFoundException