1 /*
2 * $Id: Win32Exception.java 125 2008-11-04 07:18:28Z arnep $
3 */
4 package net.sf.ovanttasks.ovnative.win32;
5
6 /**
7 * This Exception is thrown in the native code.
8 *
9 * @author lars.gersmann@roxes.com
10 */
11 public class Win32Exception extends RuntimeException {
12 /**
13 *
14 */
15 private static final long serialVersionUID = 2508849301345634603L;
16
17 public Win32Exception() {
18 super();
19 }
20
21 public Win32Exception(String message) {
22 super(message);
23 }
24
25 public Win32Exception(Throwable cause) {
26 super(cause);
27 }
28
29 public Win32Exception(String message, Throwable cause) {
30 super(message, cause);
31 }
32 }