Worldwind public release 0.2.1
[worldwind-tracker.git] / gov / nasa / worldwind / WWRuntimeException.java
blob23da9e7d3e3e057abfffab97ded5d3d15e94fe4d
1 /*
2 Copyright (C) 2001, 2006 United States Government
3 as represented by the Administrator of the
4 National Aeronautics and Space Administration.
5 All Rights Reserved.
6 */
7 package gov.nasa.worldwind;
9 /**
10 * @author Tom Gaskins
11 * @version $Id: WWRuntimeException.java 1718 2007-05-05 00:51:15Z tgaskins $
13 public class WWRuntimeException extends RuntimeException
15 public WWRuntimeException()
19 public WWRuntimeException(String s)
21 super(s);
24 public WWRuntimeException(String s, Throwable throwable)
26 super(s, throwable);
29 public WWRuntimeException(Throwable throwable)
31 super(throwable);