mirror of
https://github.com/yck1509/ConfuserEx
synced 2026-06-08 18:29:44 +00:00
15 lines
595 B
C#
15 lines
595 B
C#
using System;
|
|
|
|
namespace Confuser.Core {
|
|
/// <summary>
|
|
/// The exception that is thrown when a handled error occurred during the protection process.
|
|
/// </summary>
|
|
public class ConfuserException : Exception {
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ConfuserException" /> class.
|
|
/// </summary>
|
|
/// <param name="innerException">The inner exception, or null if no exception is associated with the error.</param>
|
|
public ConfuserException(Exception innerException)
|
|
: base("Exception occurred during the protection process.", innerException) { }
|
|
}
|
|
} |