mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
3a01c2ab2e
Changed class loading to new file structure, moved dependency to framework/thirdparty, rather than relying on "second level" dependencies through Zend_Translate_RailsYAML. To be replaced by a composer dependency (+ proper autoloading) once in place.
24 lines
497 B
PHP
Executable File
24 lines
497 B
PHP
Executable File
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Symfony\Component\Yaml\Exception;
|
|
|
|
/**
|
|
* Exception class thrown when an error occurs during dumping.
|
|
*
|
|
* @author Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* @api
|
|
*/
|
|
class DumpException extends \RuntimeException implements ExceptionInterface
|
|
{
|
|
}
|