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

17 lines
282 B
PHP

<?php
namespace com\fwdekker\deathnotifier;
use Error;
/**
* Thrown if a function receives an argument which it cannot handle.
*
* This is an error, so it always indicates a bug in the program.
*/
class IllegalArgumentError extends Error
{
// Intentionally left empty
}