パッケージ hajimeapi4j.exception

クラス ServerNotRespondError

java.lang.Object
java.lang.Throwable
java.lang.Error
hajimeapi4j.exception.ServerNotRespondError
すべての実装されたインタフェース:
Serializable

public class ServerNotRespondError extends Error
ふじわらはじめAPIのAPIサーバー側からエラーステータスが返された場合にスロー及び発生します。 特に、ふじわらはじめAPIでは一度に短期間のリクエスト送信やサーバーの混雑具合によって503エラーを返す場合があるため、必ずしもサーバーの不具合ではないことに留意してください。
導入されたバージョン:
1.0.0
関連項目:
  • コンストラクタの詳細

    • ServerNotRespondError

      public ServerNotRespondError()
      詳細メッセージなしで新規の ServerNotRespondError を作成します。
    • ServerNotRespondError

      public ServerNotRespondError(String message)
      指定された詳細メッセージで新規のServerNotRespondErrorを作成します。
      パラメータ:
      message - 指定する詳細メッセージ
    • ServerNotRespondError

      public ServerNotRespondError(String message, Throwable cause)
      指定された詳細メッセージと原因で新規のServerNotRespondErrorを作成します。
      パラメータ:
      message - 指定する詳細メッセージ
      cause - 指定する原因(原因がない、もしくは不明の場合はnull
    • ServerNotRespondError

      public ServerNotRespondError(Throwable cause)
      指定された原因で新規のServerNotRespondErrorを作成します。 このコンストラクタの場合、詳細メッセージは cause==null ? null : cause.toString();となります。
      パラメータ:
      cause - 指定する原因(原因がない、もしくは不明の場合はnull
    • ServerNotRespondError

      public ServerNotRespondError(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
      指定された詳細メッセージと原因、suppressionの有無、スタックトレースの書き込み可否で新規のServerNotRespondErrorを作成します。
      パラメータ:
      message - 指定する詳細メッセージ
      cause - 指定する原因(原因がない、もしくは不明の場合はnull
      enableSuppression - suppressionを有効にする場合はTRUE、無効にする場合はFALSE
      writableStackTrace - スタックトレースを書き込み可能にする場合はTRUE、無効にする場合はFALSE