From bb9ecb50f9b1a184e7ea59c933ceb56facd2fd3f Mon Sep 17 00:00:00 2001 From: Tomas Restrepo Date: Thu, 10 May 2007 22:25:01 +0000 Subject: QPID-441 Fix handling of bounced messages git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@537019 13f79535-47bb-0310-9956-ffa450edef68 --- dotnet/Qpid.Common/Protocol/AMQConstant.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'dotnet/Qpid.Common/Protocol') diff --git a/dotnet/Qpid.Common/Protocol/AMQConstant.cs b/dotnet/Qpid.Common/Protocol/AMQConstant.cs index 560ac97122..b85dd2ff4c 100644 --- a/dotnet/Qpid.Common/Protocol/AMQConstant.cs +++ b/dotnet/Qpid.Common/Protocol/AMQConstant.cs @@ -77,17 +77,20 @@ namespace Qpid.Protocol public static readonly AMQConstant NO_ROUTE = new AMQConstant(312, "no route", true); public static readonly AMQConstant NO_CONSUMERS = new AMQConstant(313, "no consumers", true); public static readonly AMQConstant CONTEXT_IN_USE = new AMQConstant(320, "context in use", true); - public static readonly AMQConstant CONTEXT_UNKNOWN = new AMQConstant(321, "context unknown", true); - public static readonly AMQConstant INVALID_SELECTOR = new AMQConstant(322, "selector invalid", true); public static readonly AMQConstant INVALID_PATH = new AMQConstant(402, "invalid path", true); public static readonly AMQConstant ACCESS_REFUSED = new AMQConstant(403, "access refused", true); public static readonly AMQConstant NOT_FOUND = new AMQConstant(404, "not found", true); + public static readonly AMQConstant ALREADY_EXISTS = new AMQConstant(405, "already exists", true); + public static readonly AMQConstant IN_USE = new AMQConstant(406, "in use", true); + public static readonly AMQConstant INVALID_ROUTING_KEY = new AMQConstant(407, "routing key invalid", true); + public static readonly AMQConstant REQUEST_TIMEOUT = new AMQConstant(408, "request timeout", true); + public static readonly AMQConstant INVALID_ARGUMENT = new AMQConstant(409, "argument invalid", true); public static readonly AMQConstant FRAME_ERROR = new AMQConstant(501, "frame error", true); public static readonly AMQConstant SYNTAX_ERROR = new AMQConstant(502, "syntax error", true); public static readonly AMQConstant COMMAND_INVALID = new AMQConstant(503, "command invalid", true); public static readonly AMQConstant CHANNEL_ERROR = new AMQConstant(504, "channel error", true); public static readonly AMQConstant RESOURCE_ERROR = new AMQConstant(506, "resource error", true); - public static readonly AMQConstant NOT_ALLOWED = new AMQConstant(530, "not allowed", true); + public static readonly AMQConstant NOT_ALLOWED = new AMQConstant(507, "not allowed", true); public static readonly AMQConstant NOT_IMPLEMENTED = new AMQConstant(540, "not implemented", true); public static readonly AMQConstant INTERNAL_ERROR = new AMQConstant(541, "internal error", true); -- cgit v1.2.1