NBTExplorer/SubstrateCS/Source/Data/DataExceptions.cs
2011-11-09 21:46:19 -05:00

46 lines
1.8 KiB
C#

using System;
using System.Runtime.Serialization;
namespace Substrate.Data
{
/// <summary>
/// The exception that is thrown when IO errors occur during high-level data resource management operations.
/// </summary>
[Serializable]
public class DataIOException : SubstrateException
{
/// <summary>
/// Initializes a new instance of the <see cref="DataIOException"/> class.
/// </summary>
public DataIOException ()
: base()
{ }
/// <summary>
/// Initializes a new instance of the <see cref="DataIOException"/> class with a custom error message.
/// </summary>
/// <param name="message">A custom error message.</param>
public DataIOException (string message)
: base(message)
{ }
/// <summary>
/// Initializes a new instance of the <see cref="DataIOException"/> 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 DataIOException (string message, Exception innerException)
: base(message, innerException)
{ }
/// <summary>
/// Initializes a new instance of the <see cref="DataIOException"/> 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 DataIOException (SerializationInfo info, StreamingContext context)
: base(info, context)
{ }
}
}