MediaWiki master
ZipDirectoryReaderError.php
Go to the documentation of this file.
1<?php
7namespace Wikimedia\Mime;
8
9use Exception;
10
16class ZipDirectoryReaderError extends Exception {
18 protected $errorCode;
19
25 public function __construct( $code ) {
26 $this->errorCode = $code;
27 parent::__construct( "ZipDirectoryReader error: $code" );
28 }
29
33 public function getErrorCode() {
34 return $this->errorCode;
35 }
36}