Hi HardC0d3r,
hardc0d3r <[EMAIL PROTECTED]> wrote on 04/30/2007 06:47:11 AM:
> it displays the svg document but it has errors.. i do not know what they
> mean.. please help me out..
>
> here are the errors:
>
> java.lang.NullPointerException
> at SVGApplication.registerListeners(SVGApplication.java:65)
> at
SVGApplication$1.svgLoadEventDispatchStarted(SVGApplication.java:43)
This appears to be a bug in your application.
a NullPointerException is a pretty basic java exception indicating
that you tried to access a data member or call a member function on
a null object reference.
Object o = null;
String str = o.toString(); // <-- Will generate
NullPointerException.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]