11 lines
168 B
PHP
11 lines
168 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use RuntimeException;
|
|
|
|
class ThankCardException extends RuntimeException
|
|
{
|
|
// Custom domain exception for thank card operations
|
|
}
|