01: /* Warning.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: Mon Oct 27 10:20:17 2003, Created by tomyeh
10: }}IS_NOTE
11:
12: Copyright (C) 2003 Potix Corporation. All Rights Reserved.
13:
14: {{IS_RIGHT
15: This program is distributed under GPL Version 2.0 in the hope that
16: it will be useful, but WITHOUT ANY WARRANTY.
17: }}IS_RIGHT
18: */
19: package org.zkoss.lang;
20:
21: import org.zkoss.mesg.Messageable;
22:
23: /**
24: * Represents an exception is a warning rather than error.
25: * {@link #getCode} is the warnig code.
26: *
27: * @author tomyeh
28: */
29: public interface Warning extends Expectable, Messageable {
30: }
|