| 1 | <?php |
||
| 5 | class CouldNotCreateCard extends \Exception |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Thrown when the button title is not provided. |
||
| 9 | * |
||
| 10 | * @return static |
||
| 11 | */ |
||
| 12 | public static function titleNotProvided() |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Thrown when the title characters limit is exceeded. |
||
| 19 | * |
||
| 20 | * @return static |
||
| 21 | */ |
||
| 22 | public static function titleLimitExceeded($title) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Thrown when the subtitle characters limit is exceeded. |
||
| 33 | * |
||
| 34 | * @return static |
||
| 35 | */ |
||
| 36 | public static function subtitleLimitExceeded($title) |
||
| 44 | |||
| 45 | } |
||
| 46 |