phine/exception

此包已被弃用,不再维护。没有建议的替代包。

一个用于提高异常使用的PHP库。

1.0.0 2013-08-27 17:43 UTC

This package is not auto-updated.

Last update: 2021-12-07 01:32:09 UTC


README

Build Status Coverage Status Latest Stable Version Total Downloads

为标准 Exception 类添加功能。

  • 根据 sprintf() 格式创建新的异常。
  • 使用最后一个错误(error_get_last())创建新的异常。

使用方法

use Phine\Exception\Exception;

$exception = Exception::createUsingFormat(
    'This is my %s message.',
    'formatted',
    $previousException
);

echo $undefined;

$exception = Exception::createUsingLastError();

要求

  • PHP >= 5.3.3

安装

通过 Composer

$ composer require "phine/exception=~1.0"

文档

您可以在 docs/ 目录中找到文档。

许可证

此库可在 MIT 许可证 下获得。