12 lines
250 B
PHP
12 lines
250 B
PHP
|
<?php
|
||
|
// ReleaseSavePointFailedException.php
|
||
|
// Created: 2021-05-02
|
||
|
// Updated: 2021-05-12
|
||
|
|
||
|
namespace Index\Data;
|
||
|
|
||
|
/**
|
||
|
* Exception to be thrown when save point release fails.
|
||
|
*/
|
||
|
class ReleaseSavePointFailedException extends TransactionException {}
|