Rework TIC processing and added test cases

This commit is contained in:
2023-11-22 10:40:15 +11:00
parent 5b24ff944f
commit 9fd8264c3f
30 changed files with 847 additions and 403 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Exceptions;
use Exception;
class InvalidCRCException extends Exception
{
}

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Exceptions;
use Exception;
class InvalidPasswordException extends Exception
{
}

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Exceptions;
use Exception;
class NoWriteSecurityException extends Exception
{
}

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Exceptions;
use Exception;
class NodeNotSubscribedException extends Exception
{
}

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Exceptions\TIC;
use Exception;
class NoFileAreaException extends Exception
{
}

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Exceptions\TIC;
use Exception;
class NotToMeException extends Exception
{
}

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Exceptions\TIC;
use Exception;
class SizeMismatchException extends Exception
{
}