feat(attachments): implement AttachmentService for managing uploads and deletions, add AttachmentStorageException for error handling

This commit is contained in:
2026-06-25 15:02:52 -03:00
parent 6db98ddc1a
commit aec92d5346
4 changed files with 213 additions and 18 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Domains\Attachable\Exceptions;
use RuntimeException;
class AttachmentStorageException extends RuntimeException
{
}