| 26 | /// A method is not required to declare in its throws clause any subclasses of Error that might be thrown during the execution of the method but not caught, since these errors are abnormal conditions that should never occur. |
| 27 | /// Since: JDK1.0, CLDC 1.0 |
| 28 | public class Error extends java.lang.Throwable{ |
| 29 | /// Constructs an Error with no specified detail message. |
| 30 | public Error(){ |
| 31 | //TODO codavaj!! |
| 32 | } |
| 33 | |
| 34 | /// Constructs an Error with the specified detail message. |
| 35 | /// s - the detail message. |
| 36 | public Error(java.lang.String s){ |
| 37 | //TODO codavaj!! |
| 38 | } |
| 39 | |
| 40 | } |
no outgoing calls
no test coverage detected