coins.backend
クラス SyntaxErrorException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--coins.PassException
                    |
                    +--coins.backend.SyntaxErrorException
すべての実装インタフェース:
java.io.Serializable

public class SyntaxErrorException
extends PassException

A parse error in LIR.

関連項目:
直列化された形式

フィールドの概要
 
クラス java.lang.Exception から継承したフィールド
 
コンストラクタの概要
SyntaxErrorException(java.io.File pSourceFile, int pLineNumber, java.lang.String pMessage)
          Creates a parse error with a message, a source file name, and a line number.
SyntaxErrorException(java.io.File pSourceFile, java.lang.String pMessage)
          Creates a parse error with a message and a source file name.
SyntaxErrorException(java.lang.String pMessage)
          Creates a parse error with a message.
 
クラス java.lang.Throwable から継承したメソッド
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

SyntaxErrorException

public SyntaxErrorException(java.io.File pSourceFile,
                            int pLineNumber,
                            java.lang.String pMessage)
Creates a parse error with a message, a source file name, and a line number.

パラメータ:
pSourceFile - The source file which contains this syntax error.
pLineNumber - The line number in the source file which contains this syntax error.
pMessage - The error message describing this syntax error.

SyntaxErrorException

public SyntaxErrorException(java.io.File pSourceFile,
                            java.lang.String pMessage)
Creates a parse error with a message and a source file name. Use when a line number cannot be specified.

パラメータ:
pSourceFile - The source file which contains this syntax error.
pMessage - The error message describing this syntax error.

SyntaxErrorException

public SyntaxErrorException(java.lang.String pMessage)
Creates a parse error with a message. Use when a source file cannot be specified.

パラメータ:
pMessage - The error message describing this syntax error.