mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2025-07-26 05:15:40 +00:00
10 lines
157 B
C#
10 lines
157 B
C#
using System;
|
|
|
|
namespace Wabbajack.Compiler;
|
|
|
|
public class CompilerException : Exception
|
|
{
|
|
public CompilerException(string msg) : base(msg)
|
|
{
|
|
}
|
|
} |