aboutsummaryrefslogtreecommitdiff
path: root/Tools/Hazel-Networking/Hazel/HazelException.cs
blob: c0db05ac417853acbf4276b418ed3bacd7f745af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 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)
        {

        }
    }
}