1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
using System; namespace Impostor.Hazel { /// <summary> /// Wrapper for exceptions thrown from Hazel. /// </summary> [Serializable] public class HazelException : Exception { internal HazelException(string msg) : base (msg) { } internal HazelException(string msg, Exception e) : base (msg, e) { } } }