public class ServletException extends ExceptionSE
| コンストラクターと説明 |
|---|
ServletException() 新しいサーブレット例外を構築します。 |
ServletException(StringSE message) 指定されたメッセージを持つ新しいサーブレット例外を構築します。 |
ServletException(StringSE message, ThrowableSE rootCause) サーブレットが例外をスローする必要があるときに新しいサーブレット例外を構築し、説明メッセージなど、通常の操作を妨害した「根本原因」例外に関するメッセージを含めます。 |
ServletException(ThrowableSE rootCause) サーブレットが例外をスローする必要があるときに新しいサーブレット例外を作成し、通常の操作を妨害した「根本原因」例外に関するメッセージを含めます。 |
| 修飾子と型 | メソッドと説明 |
|---|---|
ThrowableSE | getRootCause() このサーブレット例外を引き起こした例外を返します。 |
addSuppressedSE, fillInStackTraceSE, getCauseSE, getLocalizedMessageSE, getMessageSE, getStackTraceSE, getSuppressedSE, initCauseSE, printStackTraceSE, printStackTraceSE, printStackTraceSE, setStackTraceSE, toStringSEcloneSE, equalsSE, finalizeSE, getClassSE, hashCodeSE, notifySE, notifyAllSE, waitSE, waitSE, waitSEpublic ServletException()
public ServletException(StringSE message)
message - 例外メッセージのテキストを指定する String public ServletException(StringSE message, ThrowableSE rootCause)
message - 例外メッセージのテキストを含む String rootCause - サーブレットの通常の操作を妨害した Throwable 例外。このサーブレット例外が必要になります public ServletException(ThrowableSE rootCause)
このメソッドは、Throwable 例外で getLocalizedMessage メソッドを呼び出して、ローカライズされた例外メッセージを取得します。ServletException をサブクラス化する場合、このメソッドをオーバーライドして、特定のロケール向けに設計された例外メッセージを作成できます。
rootCause - サーブレットの通常の操作を妨害した Throwable 例外。サーブレット例外を必要にします public ThrowableSE getRootCause()
Throwable Copyright © 2019 Eclipse Foundation.
Use is subject to license terms.