for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebServCo\Framework\Exceptions;
class UnauthorizedException extends AclException
{
const CODE = 401;
public function __construct($message, \Exception $previous = null)
parent::__construct($message, self::CODE, $previous);
}