[sandbox.akabana]/trunk/yui/yui-core/src/main/flex/org/seasar/akabana/yui/core/error/NotFoundError.as
Parent Directory
|
Revision Log
Revision 987 -
(hide annotations)
Mon Jan 25 16:46:10 2010 JST (3 years, 3 months ago) by e1arkw
File size: 695 byte(s)
Mon Jan 25 16:46:10 2010 JST (3 years, 3 months ago) by e1arkw
File size: 695 byte(s)
NtoFoundError追加
| 1 | e1arkw | 987 | package org.seasar.akabana.yui.core.error |
| 2 | { | ||
| 3 | import mx.resources.ResourceManager; | ||
| 4 | |||
| 5 | import org.seasar.akabana.yui.core.reflection.ClassRef; | ||
| 6 | import org.seasar.akabana.yui.util.StringUtil; | ||
| 7 | |||
| 8 | [ResourceBundle("yui_core")] | ||
| 9 | public class NotFoundError extends Error | ||
| 10 | { | ||
| 11 | public function NotFoundError(owner:Object,target:String) | ||
| 12 | { | ||
| 13 | super( | ||
| 14 | StringUtil | ||
| 15 | .substitute( | ||
| 16 | ResourceManager.getInstance().getString("yui_core","NOT_FOUND_ERROR"), | ||
| 17 | ClassRef.getClassName(owner), | ||
| 18 | target | ||
| 19 | ) | ||
| 20 | ); | ||
| 21 | } | ||
| 22 | |||
| 23 | } | ||
| 24 | } |
| Repository Top ViewVC Help |
![]() |
| Powered by ViewVC |

