FileDocCategorySizeDatePackage
FilerException.javaAPI DocJava SE 6 API1134Tue Jun 10 00:26:04 BST 2008javax.annotation.processing

FilerException

public class FilerException extends IOException
Indicates a {@link Filer} detected an attempt to open a file that would violate the guarantees provided by the {@code Filer}. Those guarantees include not creating the same file more than once, not creating multiple files corresponding to the same type, and not creating files for types with invalid names.
author
Joseph D. Darcy
author
Scott Seligman
author
Peter von der Ahé
version
1.6 06/08/15
since
1.6

Fields Summary
static final long
serialVersionUID
Constructors Summary
public FilerException(String s)
Constructs an exception with the specified detail message.

param
s the detail message, which should include the name of the file attempting to be opened; may be {@code null}

                                      
       
	super(s);
    
Methods Summary