blob: 2038f1fb71689e26ae25de0c23deba0f00e5ddea (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
/**
* Data format exception
* An exception thrown when there is a problem in the format of some data.
*
* @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Exceptions
*/
class DataFormatException extends Exception {}
|