tModLoader v0.11.8.9
A mod to make and play Terraria mods
BuildException.cs
Go to the documentation of this file.
1using System;
2using System.CodeDom.Compiler;
3
5{
6 internal class BuildException : Exception
7 {
8 public CompilerErrorCollection compileErrors;
9
10 public BuildException(string message) : base(message) { }
11
12 public BuildException(string message, Exception innerException) : base(message, innerException) { }
13 }
14}