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
58e0e31b
Commit
58e0e31b
authored
Feb 03, 2011
by
Guillaume Surrel
Browse files
Improve error handling.
parent
34eb064f
Changes
1
Hide whitespace changes
Inline
Side-by-side
mom-amqp/org.ow2.joram.mom.amqp/src/main/java/org/ow2/joram/mom/amqp/StubAgentIn.java
View file @
58e0e31b
/*
* JORAM: Java(TM) Open Reliable Asynchronous Messaging
* Copyright (C) 2009 ScalAgent Distributed Technologies
* Copyright (C) 2009
- 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
...
...
@@ -443,13 +443,13 @@ public class StubAgentIn {
}
public
static
void
exchangeDeclare
(
AMQP
.
Exchange
.
Declare
exchangeDeclare
)
throws
CommandInvalidException
,
PreconditionFailedException
,
NotAllowedException
,
NotFoundException
{
PreconditionFailedException
,
NotAllowedException
,
NotFoundException
,
AccessRefusedException
{
StubLocal
.
exchangeDeclare
(
exchangeDeclare
.
exchange
,
exchangeDeclare
.
type
,
exchangeDeclare
.
durable
,
exchangeDeclare
.
passive
);
}
public
static
void
exchangeDelete
(
AMQP
.
Exchange
.
Delete
exchangeDelete
)
throws
NotFoundException
,
PreconditionFailedException
{
PreconditionFailedException
,
AccessRefusedException
{
StubLocal
.
exchangeDelete
(
exchangeDelete
.
exchange
,
exchangeDelete
.
ifUnused
);
}
...
...
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