Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
derUli committed May 10, 2021
1 parent e54ae6c commit c7ffd5d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
9 changes: 9 additions & 0 deletions ulicms/classes/exceptions/NotSupportedException.php
@@ -0,0 +1,9 @@
<?php

namespace UliCMS\Exceptions;

use InvalidArgumentException;

class NotSupportedException extends NotImplementedException
{
}
3 changes: 2 additions & 1 deletion ulicms/classes/exceptions/load.php
Expand Up @@ -11,7 +11,8 @@
"FileNotFoundException",
"ArgumentNullException",
"SCSSCompileException",
"UnknownContentTypeException"
"UnknownContentTypeException",
"NotSupportedException"
];

foreach ($classes as $class) {
Expand Down
1 change: 1 addition & 0 deletions ulicms/classes/helpers/ImagineHelper.php
Expand Up @@ -4,6 +4,7 @@

use Imagine\Image\AbstractImagine;
use Imagine\Exception\RuntimeException;
use UliCMS\Exceptions\NotSupportedException;

class ImagineHelper extends Helper
{
Expand Down

0 comments on commit c7ffd5d

Please sign in to comment.