for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ballen\Plexity\Exceptions;
/**
* Plexity
*
* Plexity (Password Complexity) is a password complexity library that
* enables you to set "rules" for a password (or any other kind of string) that
* you can then check against in your application.
* @author Bobby Allen <[email protected]>
* @license http://opensource.org/licenses/MIT
* @link https://github.com/allebb/plexity
* @link https://bobbyallen.me
*/
class ValidationException extends \Exception
{
* ValidationException constructor.
* @param string $message
* @param int $code
* @param \Exception|null $previous
public function __construct($message, $code = 0, \Exception $previous = null)
parent::__construct($message, $code, $previous);
}