FileDocCategorySizeDatePackage
InjectionException.javaAPI DocApache Lucene 2.1.02139Wed Feb 14 10:46:06 GMT 2007org.apache.lucene.gdata.server.registry.configuration

InjectionException

public class InjectionException extends RuntimeException
Will be throw if an exception occures while injecting properties, a type or cast exception occures or a {@link org.apache.lucene.gdata.server.registry.configuration.Requiered} property is not available.
author
Simon Willnauer

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public InjectionException()
Constructs a new InjectionException


             
      
        super();
    
public InjectionException(String message)
Constructs a new InjectionException

param
message - the exception message

        super(message);

    
public InjectionException(String message, Throwable cause)
Constructs a new InjectionException

param
message - the exception message
param
cause - the root cause of this exception

        super(message, cause);

    
public InjectionException(Throwable cause)
Constructs a new InjectionException

param
cause - the root cause of this exception

        super(cause);

    
Methods Summary