Updated to worldwind release 20070817
[worldwind-tracker.git] / gov / nasa / worldwind / exception / WWRuntimeException.java
blob06b9088a9b3690604c404960162aa45edb8f901b
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.exception;
9 /**
10 * @author Tom Gaskins
11 * @version $Id: WWRuntimeException.java 2422 2007-07-25 23:07:49Z 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);