mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-10 14:27:51 -05:00
15 lines
286 B
PHP
15 lines
286 B
PHP
<?php
|
|
|
|
class FreshRSS_Zip_Exception extends Exception {
|
|
private $zipErrorCode = 0;
|
|
|
|
public function __construct($zipErrorCode) {
|
|
parent::__construct('ZIP error!', 2141);
|
|
$this->zipErrorCode = $zipErrorCode;
|
|
}
|
|
|
|
public function zipErrorCode() {
|
|
return $this->zipErrorCode;
|
|
}
|
|
}
|