root/trunk/components/model/src/ome/conditions/RootException.java
| Revision 1997, 0.8 kB (checked in by jmoore, 12 months ago) |
|---|
| Line | |
|---|---|
| 1 | /* |
| 2 | * ome.conditions.RootException |
| 3 | * |
| 4 | * Copyright 2006 University of Dundee. All rights reserved. |
| 5 | * Use is subject to license terms supplied in LICENSE.txt |
| 6 | */ |
| 7 | package ome.conditions; |
| 8 | |
| 9 | // Java imports |
| 10 | import javax.ejb.ApplicationException; |
| 11 | |
| 12 | // Third-party libraries |
| 13 | |
| 14 | // Application-internal dependencies |
| 15 | |
| 16 | /** |
| 17 | * abstract superclass of all Omero exceptions. Only subclasses of this type |
| 18 | * will be thrown by the server. |
| 19 | * |
| 20 | * @author Josh Moore <a |
| 21 | * href="mailto:josh.moore@gmx.de">josh.moore@gmx.de</a> |
| 22 | * @version 2.5 <small> (<b>Internal version:</b> $Rev$ $Date$) </small> |
| 23 | * @since 2.5 |
| 24 | */ |
| 25 | @ApplicationException |
| 26 | public abstract class RootException extends RuntimeException { |
| 27 | |
| 28 | public RootException(String msg) { |
| 29 | super(msg); |
| 30 | } |
| 31 | |
| 32 | } |
Note: See TracBrowser
for help on using the browser.
