Internationalization IntlException 클래스

(PHP 5 > 5.5.0, PHP 7, PHP 8, PECL intl > 3.0.0a1)


소개

이 클래스는 intl 함수 내에서 오류가 발생할 때 예외를 생성하는 데 사용됩니다. 이러한 예외는 intl.use_exceptions가 활성화된 경우에만 생성됩니다.


클래스 개요

class IntlException extends Exception {
  /* Inherited properties */
  protected string $message = "";
  private string $string = "";
  protected int $code;
  protected string $file = "";
  protected int $line;
  private array $trace = [];
  private ?Throwable $previous = null;
  /* Inherited methods */
  final public Exception::getMessage(): string
  final public Exception::getPrevious(): ?Throwable
  final public Exception::getCode(): int
  final public Exception::getFile(): string
  final public Exception::getLine(): int
  final public Exception::getTrace(): array
  final public Exception::getTraceAsString(): string
  public Exception::__toString(): string
  private Exception::__clone(): void
}