Rework TIC processing and added test cases
This commit is contained in:
9
app/Exceptions/InvalidCRCException.php
Normal file
9
app/Exceptions/InvalidCRCException.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class InvalidCRCException extends Exception
|
||||
{
|
||||
}
|
9
app/Exceptions/InvalidPasswordException.php
Normal file
9
app/Exceptions/InvalidPasswordException.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class InvalidPasswordException extends Exception
|
||||
{
|
||||
}
|
0
app/Exceptions/NoReadSecurityException.php
Normal file
0
app/Exceptions/NoReadSecurityException.php
Normal file
9
app/Exceptions/NoWriteSecurityException.php
Normal file
9
app/Exceptions/NoWriteSecurityException.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class NoWriteSecurityException extends Exception
|
||||
{
|
||||
}
|
9
app/Exceptions/NodeNotSubscribedException.php
Normal file
9
app/Exceptions/NodeNotSubscribedException.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class NodeNotSubscribedException extends Exception
|
||||
{
|
||||
}
|
9
app/Exceptions/TIC/NoFileAreaException.php
Normal file
9
app/Exceptions/TIC/NoFileAreaException.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exceptions\TIC;
|
||||
|
||||
use Exception;
|
||||
|
||||
class NoFileAreaException extends Exception
|
||||
{
|
||||
}
|
9
app/Exceptions/TIC/NotToMeException.php
Normal file
9
app/Exceptions/TIC/NotToMeException.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exceptions\TIC;
|
||||
|
||||
use Exception;
|
||||
|
||||
class NotToMeException extends Exception
|
||||
{
|
||||
}
|
9
app/Exceptions/TIC/SizeMismatchException.php
Normal file
9
app/Exceptions/TIC/SizeMismatchException.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exceptions\TIC;
|
||||
|
||||
use Exception;
|
||||
|
||||
class SizeMismatchException extends Exception
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user