我有一个包含在服务器和客户端应用程序之间传递的bean的库。它还包含一个自定义异常类:
public class MyServiceException extends Exception{
private int code;
private String description;
public MyServiceException(int code, String description){
super(code + ": " + description);
this.code = code;
this.description = description;
}
public int getCode() {
return code;
}
public String getDescription() {
return description;
}
}
当服务器抛出异常时,会在客户端上发生这种情况:
org.apache.cxf.interceptor.Fault: Marshalling Error: MyServiceException.<init>(java.lang.String)
..........
Caused by: java.lang.NoSuchMethodException: MyServiceException.<init>(java.lang.String)
如果我将一个no-arg构造函数添加到它工作的异常类中,但代码和描述字段为0且为null。然而,它们存在于超类detailsMessage中。我没有任何其他bean的问题。实现Serializable并没有帮助。我错过了什么?
答案 0 :(得分:0)
问题是该课程缺少了制定者。