//Except where stated all code and programs in this project are the copyright of Jim Blackler, 2008.
//jimblackler@gmail.com
//
//This is free software. Libraries and programs are distributed under the terms of the GNU Lesser
//General Public License. Please see the files COPYING and COPYING.LESSER.
using System;
namespace JimBlackler.DocsByReflection
{
///
/// An exception thrown by the DocsByReflection library
///
[Serializable]
class DocsByReflectionException : Exception
{
///
/// Initializes a new exception instance with the specified
/// error message and a reference to the inner exception that is the cause of
/// this exception.
///
/// The error message that explains the reason for the exception.
/// The exception that is the cause of the current exception, or null if none.
public DocsByReflectionException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}