public class ServletException extends Exception
コンストラクタと説明 |
---|
ServletException()
新しいServletExceptionを生成します。
|
ServletException(String message)
指定されたメッセージで新しいServletExceptionを生成します。
|
ServletException(String message,
Throwable rootCause)
サーブレットが例外を投げる必要があるときに通常の操作を妨害した"根本原因"の例外と説明メッセージを含めて新しいServletExceptionを生成します。
|
ServletException(Throwable rootCause)
サーブレットが例外を投げる必要があるときに通常の操作を妨害した"根本原因"の例外を含めて新しいServletExceptionを生成します。
|
修飾子とタイプ | メソッドと説明 |
---|---|
Throwable |
getRootCause()
このServletExceptionの原因となった
Throwable |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public ServletException()
public ServletException(String message)
message
- Exceptionのメッセージのテキストを示すString
public ServletException(String message, Throwable rootCause)
message
- 例外のメッセージのテキストを含むString
rootCause
- ServletExceptionを作るのに必要な通常の操作を妨害したThrowable
public ServletException(Throwable rootCause)
このメソッドはThrowable
のgetLocalizedMessage
を呼び出し、ローカライズされた例外のメッセージを取得します。
ServletException
のサブクラスではこのメソッドをオーバーライドして特定のロケール用にデザインされた例外のメッセージを作ることができます。
rootCause
- ServletExceptionを作るのに必要な通常の操作を妨害したThrowable
public Throwable getRootCause()
Throwable
Throwable
Copyright © 1999-2017, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms. Portions Copyright © 1999-2002 The Apache Software Foundation. Portions Copyright © 2017- @megascus. Translated by @megascus.