~ubuntu-branches/ubuntu/natty/aspectj/natty

« back to all changes in this revision

Viewing changes to org.aspectj/modules/ajde/testdata/examples/spacewar/coordination/TimeoutException.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2009-10-04 16:37:23 UTC
  • mfrom: (1.1.3 upstream) (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20091004163723-ck4y7j7fhjxskkie
Tags: 1.6.6+dfsg-1
* New upstream release.
  - Update 02_use_gjdoc.diff patch
* Update my email address

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: Java; -*-
2
 
 
3
 
Copyright (c) Xerox Corporation 1998-2002.  All rights reserved.
4
 
 
5
 
Use and copying of this software and preparation of derivative works based
6
 
upon this software are permitted.  Any distribution of this software or
7
 
derivative works must comply with all applicable United States export control
8
 
laws.
9
 
 
10
 
This software is made available AS IS, and Xerox Corporation makes no warranty
11
 
about the software, its performance or its conformity to any specification.
12
 
 
13
 
|<---            this code is formatted to fit into 80 columns             --->|
14
 
|<---            this code is formatted to fit into 80 columns             --->|
15
 
|<---            this code is formatted to fit into 80 columns             --->|
16
 
 
17
 
*/
18
 
 
19
 
package coordination;
20
 
 
21
 
 
22
 
public class TimeoutException extends Exception {
23
 
    long time;
24
 
    TimeoutException(long _time) {
25
 
        time = _time;
26
 
    }
27
 
}