1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-26 15:24:37 +02:00
This commit is contained in:
Oliver Vogel
2017-02-04 11:37:19 +01:00
parent 6da0d66cd3
commit e8881fd99b
8 changed files with 15 additions and 7 deletions

View File

@@ -0,0 +1,8 @@
<?php
namespace Intervention\Image\Exception;
class ImageException extends \RuntimeException
{
# nothing to override
}

View File

@@ -2,7 +2,7 @@
namespace Intervention\Image\Exception; namespace Intervention\Image\Exception;
class InvalidArgumentException extends \RuntimeException class InvalidArgumentException extends ImageException
{ {
# nothing to override # nothing to override
} }

View File

@@ -2,7 +2,7 @@
namespace Intervention\Image\Exception; namespace Intervention\Image\Exception;
class MissingDependencyException extends \RuntimeException class MissingDependencyException extends ImageException
{ {
# nothing to override # nothing to override
} }

View File

@@ -2,7 +2,7 @@
namespace Intervention\Image\Exception; namespace Intervention\Image\Exception;
class NotFoundException extends \RuntimeException class NotFoundException extends ImageException
{ {
# nothing to override # nothing to override
} }

View File

@@ -2,7 +2,7 @@
namespace Intervention\Image\Exception; namespace Intervention\Image\Exception;
class NotReadableException extends \RuntimeException class NotReadableException extends ImageException
{ {
# nothing to override # nothing to override
} }

View File

@@ -2,7 +2,7 @@
namespace Intervention\Image\Exception; namespace Intervention\Image\Exception;
class NotSupportedException extends \RuntimeException class NotSupportedException extends ImageException
{ {
# nothing to override # nothing to override
} }

View File

@@ -2,7 +2,7 @@
namespace Intervention\Image\Exception; namespace Intervention\Image\Exception;
class NotWritableException extends \RuntimeException class NotWritableException extends ImageException
{ {
# nothing to override # nothing to override
} }

View File

@@ -2,7 +2,7 @@
namespace Intervention\Image\Exception; namespace Intervention\Image\Exception;
class RuntimeException extends \RuntimeException class RuntimeException extends ImageException
{ {
# nothing to override # nothing to override
} }