blob: 70fa718eb3b4fbd0532a634d1b1e508f42c3d224 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
/**
* MessageSource class file.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the BSD License.
*
* Copyright(c) 2004 by Qiang Xue. All rights reserved.
*
* To contact the author write to {@link mailto:qiang.xue@gmail.com Qiang Xue}
* The latest version of PRADO can be obtained from:
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @package Prado\I18N\core
*/
namespace Prado\I18N\core;
/**
* TMessageSourceIOException thrown when unable to modify message source
* data.
*
* @author Wei Zhuo<weizhuo[at]gmail[dot]com>
* @package Prado\I18N\core
*/
class TMessageSourceIOException extends TException
{
}
|