Package nablarch.core.dataformat
Class SyntaxErrorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
nablarch.core.dataformat.SyntaxErrorException
- All Implemented Interfaces:
Serializable
フォーマット定義ファイルの内容に問題がある場合に送出される実行時例外。
- See Also:
-
Constructor Summary
ConstructorDescriptionSyntaxErrorException
(String message) コンストラクタ。SyntaxErrorException
(String message, Throwable throwable) コンストラクタ。SyntaxErrorException
(LayoutFileParser.TokenType... expectedTypes) コンストラクタ。 -
Method Summary
Modifier and TypeMethodDescription構文エラーが発生したフォーマット定義ファイルのパスを取得する。getToken()
構文エラーの発生箇所を返却する。setFilePath
(String path) 構文エラーが発生したフォーマット定義ファイルのパスを設定する。構文エラーの発生箇所を設定する。Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SyntaxErrorException
コンストラクタ。- Parameters:
message
- 構文エラーメッセージ
-
SyntaxErrorException
コンストラクタ。- Parameters:
message
- 構文エラーメッセージthrowable
- 例外
-
SyntaxErrorException
コンストラクタ。- Parameters:
expectedTypes
- 構文上許容されている後続トークン
-
-
Method Details
-
getMessage
- Overrides:
getMessage
in classThrowable
-
getToken
構文エラーの発生箇所を返却する。- Returns:
- 構文エラーの発生箇所
-
setToken
構文エラーの発生箇所を設定する。- Parameters:
t
- 構文エラーの発生箇所- Returns:
- このオブジェクト自体
-
setFilePath
構文エラーが発生したフォーマット定義ファイルのパスを設定する。- Parameters:
path
- フォーマット定義ファイルのパス- Returns:
- このオブジェクト自体
-
getFilePath
構文エラーが発生したフォーマット定義ファイルのパスを取得する。- Returns:
- 構文エラーが発生したフォーマット定義ファイルのパス
-