mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
27 lines
486 B
C#
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;
|
|
}
|
|
}
|
|
}
|