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 ww w . j ava 2s . c om public class InvalidGeometryException extends RuntimeException { public InvalidGeometryException() { super(); } public InvalidGeometryException(String s) { super(s); } public InvalidGeometryException(String s, Throwable cause) { super(s, cause); } public InvalidGeometryException(Throwable cause) { super(cause); } }