com.infoteria.asteria.flowengine2.compile
Class CompileException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.infoteria.asteria.flowengine2.EngineException
                    |
                    +--com.infoteria.asteria.flowengine2.compile.CompileException
All Implemented Interfaces:
Serializable

public class CompileException
extends EngineException

コンパイル時に発生するException。
引数のコードにはCompileInfoで宣言されているシンボルを使用します。

See Also:
Serialized Form

Constructor Summary
CompileException(int code)
          コードを引数とするコンストラクタ
CompileException(int code, Object o1)
          コードと置換文字列を引数とするコンストラクタ
CompileException(int code, Object o1, Object o2)
          コードと置換文字列を引数とするコンストラクタ
CompileException(int code, Object o1, Object o2, Object o3)
          コードと置換文字列を引数とするコンストラクタ
 
Methods inherited from class com.infoteria.asteria.flowengine2.EngineException
getCode, getCodeString, getFormatMessage, getMessage, getParam
 
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CompileException

public CompileException(int code)
コードを引数とするコンストラクタ

CompileException

public CompileException(int code,
                        Object o1)
コードと置換文字列を引数とするコンストラクタ

CompileException

public CompileException(int code,
                        Object o1,
                        Object o2)
コードと置換文字列を引数とするコンストラクタ

CompileException

public CompileException(int code,
                        Object o1,
                        Object o2,
                        Object o3)
コードと置換文字列を引数とするコンストラクタ