Basic functionality
This commit is contained in:
10
app/model/Exception/Logic/InvalidArgumentException.php
Executable file
10
app/model/Exception/Logic/InvalidArgumentException.php
Executable file
@@ -0,0 +1,10 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace App\Model\Exception\Logic;
|
||||
|
||||
use App\Model\Exception\LogicException;
|
||||
|
||||
final class InvalidArgumentException extends LogicException
|
||||
{
|
||||
|
||||
}
|
||||
8
app/model/Exception/LogicException.php
Executable file
8
app/model/Exception/LogicException.php
Executable file
@@ -0,0 +1,8 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace App\Model\Exception;
|
||||
|
||||
class LogicException extends \LogicException
|
||||
{
|
||||
|
||||
}
|
||||
10
app/model/Exception/Runtime/AuthenticationException.php
Executable file
10
app/model/Exception/Runtime/AuthenticationException.php
Executable file
@@ -0,0 +1,10 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace App\Model\Exception\Runtime;
|
||||
|
||||
use Nette\Security\AuthenticationException as NetteAuthenticationException;
|
||||
|
||||
final class AuthenticationException extends NetteAuthenticationException
|
||||
{
|
||||
|
||||
}
|
||||
10
app/model/Exception/Runtime/IOException.php
Executable file
10
app/model/Exception/Runtime/IOException.php
Executable file
@@ -0,0 +1,10 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace App\Model\Exception\Runtime;
|
||||
|
||||
use App\Model\Exception\RuntimeException;
|
||||
|
||||
final class IOException extends RuntimeException
|
||||
{
|
||||
|
||||
}
|
||||
10
app/model/Exception/Runtime/InvalidStateException.php
Executable file
10
app/model/Exception/Runtime/InvalidStateException.php
Executable file
@@ -0,0 +1,10 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace App\Model\Exception\Runtime;
|
||||
|
||||
use App\Model\Exception\RuntimeException;
|
||||
|
||||
final class InvalidStateException extends RuntimeException
|
||||
{
|
||||
|
||||
}
|
||||
8
app/model/Exception/RuntimeException.php
Executable file
8
app/model/Exception/RuntimeException.php
Executable file
@@ -0,0 +1,8 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace App\Model\Exception;
|
||||
|
||||
class RuntimeException extends \RuntimeException
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user