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 Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClassName()
The class name of the handler.String
getMethodName()
The method name of the handler.List<String>
getMethodParameterTypes()
The method parameters.void
setClassName(String className)
Sets class name.void
setMethodName(String methodName)
Sets method name.void
setMethodParameterTypes(List<String> methodParameterTypes)
Sets method parameter types.
-
-
-
Method Detail
-
getClassName
public String getClassName()
The class name of the handler.- Returns:
- className class name
-
setClassName
public void setClassName(String className)
Sets class name.- Parameters:
className
- the class name
-
getMethodName
public String getMethodName()
The method name of the handler.- Returns:
- methodName method name
-
setMethodName
public void setMethodName(String methodName)
Sets method name.- Parameters:
methodName
- the method name
-
getMethodParameterTypes
public List<String> getMethodParameterTypes()
The method parameters.- Returns:
- methodParameterTypes method parameter types
-
-