2021-09-27 12:42:46 +00:00
|
|
|
using System;
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
namespace Wabbajack.Compiler;
|
|
|
|
|
|
|
|
public class CompilerException : Exception
|
2021-09-27 12:42:46 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
public CompilerException(string msg) : base(msg)
|
2021-09-27 12:42:46 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|