Package org.bremersee.exception.model
Class Handler
- java.lang.Object
- 
- org.bremersee.exception.model.Handler
 
- 
- All Implemented Interfaces:
- Serializable
 
 @Validated public class Handler extends Object implements Serializable The handler where the exception occurred.- Author:
- Christian Bremer
- See Also:
- Serialized Form
 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClassName()The class name of the handler.StringgetMethodName()The method name of the handler.List<String>getMethodParameterTypes()The method parameters.voidsetClassName(String className)Sets class name.voidsetMethodName(String methodName)Sets method name.voidsetMethodParameterTypes(List<String> methodParameterTypes)Sets method parameter types.
 
- 
- 
- 
Method Detail- 
getClassNamepublic String getClassName() The class name of the handler.- Returns:
- className class name
 
 - 
setClassNamepublic void setClassName(String className) Sets class name.- Parameters:
- className- the class name
 
 - 
getMethodNamepublic String getMethodName() The method name of the handler.- Returns:
- methodName method name
 
 - 
setMethodNamepublic void setMethodName(String methodName) Sets method name.- Parameters:
- methodName- the method name
 
 - 
getMethodParameterTypespublic List<String> getMethodParameterTypes() The method parameters.- Returns:
- methodParameterTypes method parameter types
 
 
- 
 
-