Improved build.xml
[vimdoclet.git] / sample / java.lang.ArithmeticException.txt
blob59a5342cd03cf3bd3f5e522fb2194c9206dddcc3
1 *java.lang.ArithmeticException* *ArithmeticException* Thrown when an exceptional
3 public class ArithmeticException
4   extends    |java.lang.RuntimeException|
6 |java.lang.ArithmeticException_Description|
7 |java.lang.ArithmeticException_Fields|
8 |java.lang.ArithmeticException_Constructors|
9 |java.lang.ArithmeticException_Methods|
11 ================================================================================
13 *java.lang.ArithmeticException_Constructors*
14 |java.lang.ArithmeticException()|Constructs an ArithmeticException with no deta
15 |java.lang.ArithmeticException(String)|Constructs an ArithmeticException with t
17 *java.lang.ArithmeticException_Description*
19 Thrown when an exceptional arithmetic condition has occurred. For example, an 
20 integer "divide by zero" throws an instance of this class. 
23 *java.lang.ArithmeticException()*
25 public ArithmeticException()
27 Constructs an ArithmeticException with no detail message. 
30 *java.lang.ArithmeticException(String)*
32 public ArithmeticException(java.lang.String s)
34 Constructs an ArithmeticException with the specified detail message. 
36     s - the detail message.