fixed some formatting typos
[vimdoclet.git] / sample / java.util.IllegalFormatConversionException.txt
blob7305b0a33204ed4b00c21bc900de3675e2e2a7fe
1 *java.util.IllegalFormatConversionException* *IllegalFormatConversionException* 
3 public class IllegalFormatConversionException
4   extends    |java.util.IllegalFormatException|
6 |java.util.IllegalFormatConversionException_Description|
7 |java.util.IllegalFormatConversionException_Fields|
8 |java.util.IllegalFormatConversionException_Constructors|
9 |java.util.IllegalFormatConversionException_Methods|
11 ================================================================================
13 *java.util.IllegalFormatConversionException_Constructors*
14 |java.util.IllegalFormatConversionException(char,Class<?>)|Constructs an instan
16 *java.util.IllegalFormatConversionException_Methods*
17 |java.util.IllegalFormatConversionException.getArgumentClass()|Returns the clas
18 |java.util.IllegalFormatConversionException.getConversion()|Returns the inappli
19 |java.util.IllegalFormatConversionException.getMessage()|
21 *java.util.IllegalFormatConversionException_Description*
23 Unchecked exception thrown when the argument corresponding to the format 
24 specifier is of an incompatible type. 
26 Unless otherwise specified, passing a null argument to any method or 
27 constructor in this class will cause a (|java.lang.NullPointerException|) to be 
28 thrown. 
32 *java.util.IllegalFormatConversionException(char,Class<?>)*
34 public IllegalFormatConversionException(
35   char c,
36   java.lang.Class<?> arg)
38 Constructs an instance of this class with the mismatched conversion and the 
39 corresponding argument class. 
41     c - Inapplicable conversion 
42     arg - Class of the mismatched argument 
44 *java.util.IllegalFormatConversionException.getArgumentClass()*
46 public |java.lang.Class|<?> getArgumentClass()
48 Returns the class of the mismatched argument. 
52     Returns: The class of the mismatched argument 
54 *java.util.IllegalFormatConversionException.getConversion()*
56 public char getConversion()
58 Returns the inapplicable conversion. 
62     Returns: The inapplicable conversion 
64 *java.util.IllegalFormatConversionException.getMessage()*
66 public |java.lang.String| getMessage()