public function __construct($message)
 {
     parent::__construct(400, $message);
 }
 public function __construct($max_limit)
 {
     parent::__construct(406, 'Limit is out of bounds [1..' . $max_limit . ']');
 }