This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/core/exceptions.php

57 lines
977 B
PHP
Raw Normal View History

<?php
2014-04-29 05:33:03 +00:00
2009-07-19 07:38:13 +00:00
/**
2014-04-29 05:33:03 +00:00
* Class SCoreException
*
* A base exception to be caught by the upper levels.
2009-07-19 07:38:13 +00:00
*/
class SCoreException extends Exception
{
}
2009-07-19 07:38:13 +00:00
/**
2014-04-29 05:33:03 +00:00
* Class PermissionDeniedException
*
* A fairly common, generic exception.
2009-07-19 07:38:13 +00:00
*/
class PermissionDeniedException extends SCoreException
{
}
2014-04-25 20:07:30 +00:00
/**
* Class ImageDoesNotExist
*
* This exception is used when an Image cannot be found by ID.
*
* Example: Image::by_id(-1) returns null
*/
class ImageDoesNotExist extends SCoreException
{
}
2015-07-12 21:40:28 +00:00
/*
* For validate_input()
*/
class InvalidInput extends SCoreException
{
}
/*
* This is used by the image resizing code when there is not enough memory to perform a resize.
*/
class InsufficientMemoryException extends SCoreException
{
}
/*
* This is used by the image resizing code when there is an error while resizing
*/
class ImageResizeException extends SCoreException
{
public $error;
public function __construct(string $error)
{
$this->error = $error;
}
2019-06-14 12:47:50 +00:00
}