using System;
namespace Confuser.Core.Project {
///
/// The exception that is thrown when attempted to parse an invalid pattern.
///
public class InvalidPatternException : Exception {
///
/// Initializes a new instance of the class.
///
/// The message that describes the error.
public InvalidPatternException(string message)
: base(message) { }
///
/// Initializes a new instance of the class.
///
/// The error message that explains the reason for the 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.
///
public InvalidPatternException(string message, Exception innerException)
: base(message, innerException) { }
}
}