Back to project page zmap.
The source code is released under:
GNU Lesser General Public License
If you think the Android project zmap listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.zmap.geom; //from w w w . jav a2 s.com public class EmptyGeometryException extends RuntimeException { public EmptyGeometryException() { super(); } public EmptyGeometryException(String s) { super(s); } public EmptyGeometryException(String s, Throwable cause) { super(s, cause); } public EmptyGeometryException(Throwable cause) { super(cause); } }