fixed some formatting typos
[vimdoclet.git] / sample / java.lang.ArithmeticException.txt
blob59634fe1dc1f9d0b5569efd63115b8993b2fce4f
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. 
24 *java.lang.ArithmeticException()*
26 public ArithmeticException()
28 Constructs an ArithmeticException with no detail message. 
31 *java.lang.ArithmeticException(String)*
33 public ArithmeticException(java.lang.String s)
35 Constructs an ArithmeticException with the specified detail message. 
37     s - the detail message.