public function __construct()
 {
     $message = 'Autoloader instance not found!';
     parent::__construct($message, null, null);
 }
 public function __construct($directory)
 {
     $message = 'Invalid module declared parameters. "' . $directory . '"';
     parent::__construct($message, null, null);
 }
 public function __construct($status)
 {
     $message = 'ZipArchive error occurred.';
     parent::__construct($message, $status);
 }