Last change
on this file was 127, checked in by Wouter Pasman, 6 years ago |
#41 ROLL BACK of rev.126 . So this version is equal to rev. 125
|
File size:
791 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * NegotiatorException.java
|
---|
3 | *
|
---|
4 | * Created on November 17, 2006, 3:59 PM
|
---|
5 | *
|
---|
6 | * To change this template, choose Tools | Template Manager
|
---|
7 | * and open the template in the editor.
|
---|
8 | */
|
---|
9 |
|
---|
10 | package genius.core.exceptions;
|
---|
11 |
|
---|
12 | /**
|
---|
13 | * reports problem with negotiator agent.
|
---|
14 | *
|
---|
15 | * @author dmytro This is a generic class of nogotiation errors.
|
---|
16 | */
|
---|
17 | public class NegotiatorException extends Exception {
|
---|
18 |
|
---|
19 | private static final long serialVersionUID = 5934438120399990013L;
|
---|
20 |
|
---|
21 | /** Creates a new instance of NegotiatorException */
|
---|
22 | // Wouter: I think we dont need a constructor,
|
---|
23 | // the constructor of Exception is good enough.
|
---|
24 | public NegotiatorException(String message) {
|
---|
25 | super(message);
|
---|
26 | }
|
---|
27 |
|
---|
28 | public NegotiatorException(String message, Throwable e) {
|
---|
29 | super(message, e);
|
---|
30 | }
|
---|
31 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.