01: /*
02: * $Header: /cvs/j3dfly/J3dFly/src/org/jdesktop/j3dfly/utils/loadercontrol/UnsupportedFormatException.java,v 1.1 2005/04/20 21:05:08 paulby Exp $
03: *
04: * Sun Public License Notice
05: *
06: * The contents of this file are subject to the Sun Public License Version
07: * 1.0 (the "License"). You may not use this file except in compliance with
08: * the License. A copy of the License is available at http://www.sun.com/
09: *
10: * The Original Code is Java 3D(tm) Fly Through.
11: * The Initial Developer of the Original Code is Paul Byrne.
12: * Portions created by Paul Byrne are Copyright (C) 2002.
13: * All Rights Reserved.
14: *
15: * Contributor(s): Paul Byrne.
16: *
17: **/
18: package org.jdesktop.j3dfly.utils.loadercontrol;
19:
20: /**
21: * @author Paul Byrne
22: * @version 1.4, 01/18/02
23: *
24: * Thrown if there is no loader available for a file format
25: */
26: public class UnsupportedFormatException extends java.lang.Exception {
27:
28: /**
29: * Creates new <code>UnsupportedFormat</code> without detail message.
30: */
31: public UnsupportedFormatException() {
32: }
33:
34: /**
35: * Constructs an <code>UnsupportedFormat</code> with the specified detail message.
36: * @param msg the detail message.
37: */
38: public UnsupportedFormatException(String msg) {
39: super(msg);
40: }
41: }
|