using System;
namespace Confuser.Core {
///
/// The exception that is thrown when a handled error occurred during the protection process.
///
public class ConfuserException : Exception {
///
/// Initializes a new instance of the class.
///
/// The inner exception, or null if no exception is associated with the error.
public ConfuserException(Exception innerException)
: base("Exception occurred during the protection process.", innerException) { }
}
}