Lines Matching refs:VerboseTarIOException
31 * @throws VerboseTarIOException
49 … if(!$this->fh) throw new VerboseTarIOException('Could not open file for reading: '.$this->file);
75 …if($this->closed || !$this->file) throw new VerboseTarIOException('Can not read from a closed arch…
112 * @throws VerboseTarIOException
116 …if($this->closed || !$this->file) throw new VerboseTarIOException('Can not read from a closed arch…
178 … if(!$fp) throw new VerboseTarIOException('Could not open file for writing: '.$output);
209 * @throws VerboseTarIOException
231 … if(!$this->fh) throw new VerboseTarIOException('Could not open file for writing: '.$this->file);
243 * @throws VerboseTarIOException
246 …if($this->closed) throw new VerboseTarIOException('Archive has been closed, files can no longer be…
252 if(!$fp) throw new VerboseTarIOException('Could not open file for reading: '.$file);
285 * @throws VerboseTarIOException
288 …if($this->closed) throw new VerboseTarIOException('Archive has been closed, files can no longer be…
369 * @throws VerboseTarIOException
375 throw new VerboseTarIOException('Could not write to file: '.$file);
399 * @throws VerboseTarIOException
413 if($written === false) throw new VerboseTarIOException('Failed to write to archive stream');
595 class VerboseTarIOException extends Exception { class