root/branches/compiler/cSharp/ooasCompiler/src/parser/ooaExceptions.cs
3 | krennw | /**
|
|
*
|
|||
* OOAS Compiler (Deprecated)
|
|||
*
|
|||
* Copyright 2015, Institute for Software Technology, Graz University of
|
|||
* Technology. Portions are copyright 2015 by the AIT Austrian Institute
|
|||
* of Technology. All rights reserved.
|
|||
*
|
|||
* SEE THE "LICENSE" FILE FOR THE TERMS UNDER WHICH THIS FILE IS PROVIDED.
|
|||
*
|
|||
* Please notice that this version of the OOAS compiler is considered de-
|
|||
* precated. Only the Java version is maintained.
|
|||
*
|
|||
* Contributors:
|
|||
* Willibald Krenn (TU Graz/AIT)
|
|||
* Stefan Tiran (TU Graz/AIT)
|
|||
*/
|
|||
using System;
|
|||
using System.Collections.Generic;
|
|||
using System.Text;
|
|||
namespace TUG.Mogentes
|
|||
{
|
|||
public class UlyssesException : Exception
|
|||
{
|
|||
// lacks all the constructors necessary for remoting..
|
|||
public UlyssesException(string message)
|
|||
: base(message)
|
|||
{ }
|
|||
}
|
|||
public class UlyssesCompileException : UlyssesException
|
|||
{
|
|||
public UlyssesCompileException(string message)
|
|||
: base(message)
|
|||
{ }
|
|||
}
|
|||
public class SymbolAlreadyDefinedException : UlyssesException
|
|||
{
|
|||
public SymbolAlreadyDefinedException(string message)
|
|||
: base(message)
|
|||
{ }
|
|||
}
|
|||
}
|