blob: 912d52c09756b64961307701586e29d797eb865a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package com.c2kernel.collection;
/**************************************************************************
*
* $Revision: 1.1 $
* $Date: 2003/05/09 14:23:01 $
*
* Copyright (C) 2003 CERN - European Organization for Nuclear Research
* All rights reserved.
**************************************************************************/
public class MembershipException extends Exception {
public MembershipException() {
super();
}
public MembershipException(String s) {
super(s);
}
}
|