• Views
  • Iteration Report
  • My Iteration Report
  •  
OMERO.server
  • Login
  • Help/Guide
  • About Trac
  • Preferences
  • Wiki
  • Timeline
  • Roadmap
  • Browse Source
  • View Tickets
  • Search

Context Navigation

  • Last Change
  • Annotate
  • Revision Log

root/trunk/components/model/src/ome/conditions/RootException.java

Revision 1997, 0.8 kB (checked in by jmoore, 12 months ago)

StructuredAnnotations : First attempt at an attribute hierarchy

This is a somewhat simple-minded approach, and will probably
be dropped in the future, includes initial object.vm mapping
using Hibernate Annotations

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 */
7package ome.conditions;
8
9// Java imports
10import 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 &nbsp;&nbsp;&nbsp;&nbsp; <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
26public 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.

Download in other formats:

  • Plain Text
  • Original Format

Trac Powered

Powered by Trac 0.11
By Edgewall Software.

Visit the Trac open source project at
http://trac.edgewall.org/