コード例 #1
0
ファイル: FileExists.class.php プロジェクト: evilgeny/bob
 public function __construct(RM_ObjectFs_Dir $parent, RM_ObjectFs_Entity $entity)
 {
     $this->parent = $parent;
     $this->entity = $entity;
     parent::__construct("File exists");
 }
コード例 #2
0
ファイル: Upload.class.php プロジェクト: evilgeny/bob
 public function __construct($fileId, $errorCode)
 {
     $this->_rawError = isset($this->_errCodes[$errorCode]) ? $errorCode : 'unknown';
     parent::__construct("Upload error (file `{$fileId}') - " . $this->_errCodes[$errorCode][1]);
 }
コード例 #3
0
ファイル: Unavailable.class.php プロジェクト: evilgeny/bob
 public function __construct($msg)
 {
     parent::__construct($msg);
 }