mirror of
https://github.com/MadMin3r/UnconfuserEx
synced 2026-06-23 09:25:19 +00:00
26 lines
461 B
C#
26 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MSILEmulator
|
|
{
|
|
internal class EmulatorException : Exception
|
|
{
|
|
|
|
public EmulatorException()
|
|
{
|
|
}
|
|
|
|
public EmulatorException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public EmulatorException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|