13 lines
202 B
PHP
13 lines
202 B
PHP
<?php
|
|
|
|
namespace Dotenv\Exception;
|
|
|
|
use RuntimeException;
|
|
|
|
/**
|
|
* This is the validation exception class.
|
|
*/
|
|
class ValidationException extends RuntimeException implements ExceptionInterface
|
|
{
|
|
//
|
|
}
|