Home
last modified time | relevance | path

Searched refs:Exception (Results 76 – 92 of 92) sorted by path

1234

/dokuwiki/vendor/splitbrain/php-archive/src/
H A DArchiveIOException.php8 class ArchiveIOException extends \Exception
H A DArchiveIllegalCompressionException.php8 class ArchiveIllegalCompressionException extends \Exception
H A DFileInfoException.php8 class FileInfoException extends \Exception
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md82 You can use the provided ``splitbrain\phpcli\Exception`` to signal any problems within your main code yourself. The
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DBase.php108 * @throws Exception
120 * @throws Exception
131 * @throws Exception
136 throw new Exception('This has to be run from the command line');
254 * @param \Exception|string $error either an exception or an error message
260 if (is_object($error) && is_a($error, 'Exception')) {
261 /** @var Exception $error */
269 $code = Exception::E_ANY;
H A DColors.php106 * @throws Exception
121 * @throws Exception
133 * @throws Exception
141 throw new Exception("No such color $color");
152 * @throws Exception
164 * @throws Exception
H A DException.php6 * Class Exception
14 class Exception extends \RuntimeException class
24 * @param string $message The Exception message to throw.
25 * @param int $code The Exception code
26 * @param \Exception $previous The previous exception used for the exception chaining.
28 public function __construct($message = "", $code = 0, \Exception $previous = null)
H A DOptions.php41 * @throws Exception when arguments can't be read
113 * @throws Exception
118 throw new Exception("Command $command not registered");
135 * @throws Exception
140 throw new Exception("Command $command already registered");
159 * @throws Exception
164 throw new Exception("Command $command not registered");
175 throw new Exception("Short options should be exactly one ASCII character");
189 * @throws Exception
204 throw new Exception("No
[all...]
H A DTableFormatter.php117 * @throws Exception
143 throw new Exception('Only one fluid column allowed!');
146 throw new Exception("unknown column format $col");
167 throw new Exception("Wanted column widths exceed available space");
187 * @throws Exception
/dokuwiki/vendor/splitbrain/php-jsstrip/src/
H A DException.php5 class Exception extends \Exception class
H A DJSStrip.php42 * @throws Exception if parsing fails
244 * @throws Exception
252 throw new Exception($msg);
/dokuwiki/vendor/splitbrain/slika/
H A DREADME.md21 Operations can be chained together. Consider the chain to be one command. Do not reuse the adapter returned by `run()`, it is a single use object. All operations can potentially throw a `\splitbrain\slika\Exception`.
27 use \splitbrain\slika\Exception;
38 } catch (Exception $e) {
/dokuwiki/vendor/splitbrain/slika/src/
H A DAdapter.php22 * @throws Exception
27 throw new Exception('image file does not exist');
31 throw new Exception('image file is not readable');
H A DException.php7 * Exception thrown on all errors during image processing
9 class Exception extends \Exception class
H A DGdAdapter.php39 * @throws Exception
74 * @throws Exception
80 throw new Exception('Unknown rotation given');
123 * @throws Exception
134 * @throws Exception
145 * @throws Exception
157 throw new Exception('Can not save image format ' . $extension);
174 * @throws Exception
181 throw new Exception('Failed to read image information');
190 throw new Exception('Ca
[all...]
H A DImageMagickAdapter.php20 throw new Exception('Can not find or run ' . $this->options['imconvert']);
39 throw new Exception('Unknown rotation given');
61 * @throws Exception
66 throw new Exception('You can not resize to 0x0');
80 * @throws Exception
85 throw new Exception('You can not crop to 0x0');
105 * @throws Exception
127 throw new Exception('ImageMagick returned non-zero exit code for ' . $cmd);
H A DSlika.php38 * @throws Exception
52 throw new Exception('No suitable Adapter found');

1234