1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/fixtures/stubs/DomainException.php

20 lines
566 B
PHP
Raw Normal View History

<?php
class DomainException extends LogicException
{
/**
* Construct the exception. Note: The message is NOT binary safe.
2019-03-23 19:27:54 +01:00
*
* @see https://php.net/manual/en/exception.construct.php
*
* @param int $message [optional] The Exception message to throw
* @param int $code [optional] The Exception code
* @param throwable $previous [optional] The previous throwable used for the exception chaining
*
* @since 5.1.0
*/
2019-03-23 19:27:54 +01:00
public function __construct($message = '', $code = 0, Throwable $previous = null)
{
}
}