My Java application needs to serialize/deserialize an XML structure received via HTTP. This XML message may contain an Error element on almost any level of the XML. That's why all classes extend ApiError. Please see the following question as well: Deserialize repeating XML elements in Simple 2.5.3 (Java)
I have created the following class:
public class ApiError {
private String code;
private String level;
private String text;
public get/set...() {}
}
Almost every other class in my application extends the ApiError class as those classes may raise an error.
I'd like to have a method like getErrorOrigin() which returns the name of the class which first created an instance of ApiError?
Is there an easy way in Java how to do this?
Thanks,
Robert
ApiErrorextendjava.lang.Exception, than you would have access to the stack trace, which I guess would solve your problem. Otherwise (ugly) you could have an argument in the constructor ofApiErrorwhich is aClassdefined by the object where your error is created (e.g.new ApiError(this.getClass()). You can then output this class name when you want it. [Edit: it's the solution from Ted Hopp below.] – toto2 Jun 5 '11 at 15:49ApiErrorclass: it looks more likeApiErroris an interface which all of your classes implement. If you don't want that, you might add anApiErrorobject to your classes, rather then extend it. – Nanne Jun 5 '11 at 15:51Errorelement on almost any level of the XML. That's why I'm extending all classes fromApiError. Please see the following question as well: stackoverflow.com/q/6197196/478406 – Robert Jun 5 '11 at 19:43