1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00
2010-05-29 10:08:47 -05:00

27 lines
486 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace RusticiSoftware.Translator
{
class CorruptCompilationUnit : Exception
{
ASTNode ast = null;
public CorruptCompilationUnit(ASTNode astIn)
{
ast = astIn;
}
}
class UnexpectedAST : Exception
{
ASTNode ast = null;
public UnexpectedAST(ASTNode astIn)
{
ast = astIn;
}
}
}