NBTExplorer/SubstrateCS/Source/SubstrateException.cs
2011-10-08 00:01:51 -04:00

46 lines
1.8 KiB
C#

using System;
using System.Runtime.Serialization;
namespace Substrate
{
/// <summary>
/// A base class for all Substrate-related exception classes.
/// </summary>
[Serializable]
public class SubstrateException : Exception
{
/// <summary>
/// Initializes a new instance of the <see cref="SubstrateException"/> class.
/// </summary>
public SubstrateException ()
: base()
{ }
/// <summary>
/// Initializes a new instance of the <see cref="SubstrateException"/> class with a custom error message.
/// </summary>
/// <param name="message">A custom error message.</param>
public SubstrateException (string message)
: base(message)
{ }
/// <summary>
/// Initializes a new instance of the <see cref="SubstrateException"/> class with a custom error message and a reference to
/// an InnerException representing the original cause of the exception.
/// </summary>
/// <param name="message">A custom error message.</param>
/// <param name="innerException">A reference to the original exception that caused the error.</param>
public SubstrateException (string message, Exception innerException)
: base(message, innerException)
{ }
/// <summary>
/// Initializes a new instance of the <see cref="SubstrateException"/> class with serialized data.
/// </summary>
/// <param name="info">The object that holds the serialized object data.</param>
/// <param name="context">The contextual information about the source or destination.</param>
protected SubstrateException (SerializationInfo info, StreamingContext context)
: base(info, context)
{ }
}
}