envms/osseus

View on GitHub
src/Exception/InvalidException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Envms\Osseus\Exception;

/**
 * Class Invalid
 *
 * Base exception class for "invalid" exceptions. Can be extended to include exceptions
 * to invalid argument, data type etc.
 */
class InvalidException extends Exception
{
    protected $message = 'Invalid exception thrown';
}