Mercury library  1.0
Translation of CFG grammars into an object model (Bachelor's thesis).
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties
MercuryException.cs
Go to the documentation of this file.
1 using System;
2 using System.Runtime.Serialization;
3 
4 namespace Mercury.Exceptions
5 {
6 //==<< MercuryException >>===================================================
7 
9  [Serializable]
10  public class MercuryException : Exception
11  {
13  public MercuryException()
14  : base()
15  { }
16 
22  public MercuryException(string message)
23  : base(message)
24  { }
25 
32  public MercuryException(string message, Exception inner)
33  : base(message, inner)
34  { }
35 
47  protected MercuryException(SerializationInfo info, StreamingContext context)
48  : base(info, context)
49  { }
50  }
51 }
MercuryException(string message, Exception inner)
Initializes a new instance of the MercuryException class with a specified error message and an except...
MercuryException()
Initializes a new instance of the MercuryException class.
MercuryException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the MercuryException class with serialized data.
An exception thrown by the Mercury library.
An exception has been thrown
MercuryException(string message)
Initializes a new instance of the MercuryException class with a specified error message.