Code:
String os = System.getProperty("os.name");
if (os.startsWith("Windows 9") || os.equals("Windows Me")) {
throw new RuntimeException("This provider is not supported on this version of Windows");
}
String os = System.getProperty("os.name");
if (os.startsWith("Windows 9") || os.equals("Windows Me")) {
throw new RuntimeException("This provider is not supported on this version of Windows");
}
if (os.equals("Windows 95") || os.equals("Windows 98") || os.equals("Windows Me"))

Comment