summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Hazel/HazelException.cs
blob: 8c6fc3c12984200a0e2493611e4154fd4ee72347 (plain)
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)
        {

        }
    }
}