DateError クラス

はじめに

タイムゾーンデータベースが見つからなかったり、不正なデータが含まれている場合にスローされます。

このエラーは決して発生しないはずです。 発生する場合、ユーザーが書いたコード以外が原因です。 このエラーには2つの子クラス(DateObjectErrorDateRangeError) があり、それらはプログラマーの間違いや期間に関する問題が原因でスローされます。

クラス概要

DateError
extends Error
/* 継承したプロパティ */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private Throwablenull $previous = null;
/* 継承したメソッド */
public __construct(string $message = "", int $code = 0, Throwablenull $previous = null)
final public string getMessage()
final public Throwablenull getPrevious()
final public int getCode()
final public string getFile()
final public int getLine()
final public array getTrace()
final public string getTraceAsString()
public string __toString()
private void __clone()

参考

  • DateObjectError
  • DateRangeError