ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Revision Graph
|
Root Listing
root
/
i-scream
/
experimental
/
server
/
Queue
/
InvalidQueueException.java
Revision:
1.1
Committed:
Tue Jan 2 01:53:27 2001 UTC
(23 years, 10 months ago) by
tdb
Branch:
MAIN
Log Message:
And exception to be thrown when a consumer tries to request data from a queue which does not exist.
File Contents
#
User
Rev
Content
1
tdb
1.1
public
class
InvalidQueueException
extends
Exception
{
2
3
public
InvalidQueueException
(
String
message
){
4
super
(
message
);
5
}
6
7
}
8
9
10