13 lines
222 B
PHP
13 lines
222 B
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Contains \Drupal\locale\StringStorageException.
|
|
*/
|
|
|
|
namespace Drupal\locale;
|
|
|
|
/**
|
|
* Defines an exception thrown when storage operations fail.
|
|
*/
|
|
class StringStorageException extends \Exception {}
|