Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
joram
joram
Commits
bbf47637
Commit
bbf47637
authored
Feb 03, 2011
by
Guillaume Surrel
Browse files
Add unexpected frame exception.
parent
41e487b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
mom-amqp/org.ow2.joram.mom.amqp/src/main/java/org/ow2/joram/mom/amqp/exceptions/UnexpectedFrameException.java
0 → 100644
View file @
bbf47637
/*
* JORAM: Java(TM) Open Reliable Asynchronous Messaging
* Copyright (C) 2011 ScalAgent Distributed Technologies
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA.
*
* Initial developer(s): ScalAgent Distributed Technologies
* Contributor(s):
*/
package
org.ow2.joram.mom.amqp.exceptions
;
import
org.ow2.joram.mom.amqp.marshalling.AMQP
;
/**
* Exception thrown if the peer sent a frame that was not expected, usually in
* the context of a content header and body. This strongly indicates a fault in
* the peer's content processing.
*/
public
class
UnexpectedFrameException
extends
ConnectionException
{
private
static
final
long
serialVersionUID
=
1L
;
public
UnexpectedFrameException
(
String
message
)
{
super
(
message
);
}
public
int
getCode
()
{
return
AMQP
.
UNEXPECTED_FRAME
;
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment