1: <?php
2: /**
3: * Horde YAML package
4: *
5: * This package is heavily inspired by the Spyc PHP YAML
6: * implementation (http://spyc.sourceforge.net/), and portions are
7: * copyright 2005-2006 Chris Wanstrath.
8: *
9: * @author Chris Wanstrath <chris@ozmm.org>
10: * @author Chuck Hagenbuch <chuck@horde.org>
11: * @author Mike Naberezny <mike@maintainable.com>
12: * @license http://www.horde.org/licenses/bsd BSD
13: * @category Horde
14: * @package Yaml
15: */
16:
17: /**
18: * Exception class for exceptions thrown by Horde_Yaml
19: *
20: * @category Horde
21: * @package Yaml
22: */
23: class Horde_Yaml_Exception extends Horde_Exception_LastError
24: {
25: }
26: