Class UnsupportedPlatformException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
gov.nyc.doitt.gis.geoclient.jni.util.UnsupportedPlatformException
- All Implemented Interfaces:
Serializable
Thrown when this library is run on an unsupported platform. Currently, the native
Geosupport
application is only available from the Department of City Planning on 64-bit Linux and Windows
operating systems. Therefore, geoclient-jni only runs on these same platforms.- Since:
- 2.0.0
- Author:
- mlipper
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUnsupportedPlatformException(String message) UnsupportedPlatformException(String operatingSystem, String architecture) Uses the given operating system name (Linux, Windows, etc.) and CPU architecture (x64, amd64, etc.) to create an informative exception message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnsupportedPlatformException
Uses the given operating system name (Linux, Windows, etc.) and CPU architecture (x64, amd64, etc.) to create an informative exception message.- Parameters:
operatingSystem- OS namearchitecture- CPU architecture
-
UnsupportedPlatformException
-