12 lines
153 B
PHP
12 lines
153 B
PHP
<?php
|
|
|
|
namespace MightyPork\Exceptions;
|
|
|
|
/**
|
|
* Something can't be used the way it was
|
|
*/
|
|
class NotApplicableException extends RuntimeException
|
|
{
|
|
//
|
|
}
|