death-notifier/src/main/php/com/fwdekker/deathnotifier/UnexpectedException.php

18 lines
343 B
PHP

<?php
namespace com\fwdekker\deathnotifier;
use Exception;
/**
* Thrown to indicate that a request to the server could not be handled because of something that was out of control of
* both the server and the client.
*
* @see MalformedRequestException
*/
class UnexpectedException extends Exception
{
// Intentionally left empty
}