12 lines
176 B
PHP
12 lines
176 B
PHP
<?php
|
|
|
|
namespace WPO\IPS\UBL\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
class FileWriteException extends Exception {
|
|
}
|