Author: jgomes
Date: Wed Mar 11 18:36:05 2009
New Revision: 752553

URL: http://svn.apache.org/viewvc?rev=752553&view=rev
Log:
Renamed exception classes from using standard prefix of NMS* to not have any 
prefix.  This issue voted on and passed 2 to 1.
Fixes [AMQNET-93]. (See https://issues.apache.org/activemq/browse/AMQNET-93)

Added:
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IllegalStateException.cs
      - copied, changed from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSIllegalStateException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidClientIDException.cs
      - copied, changed from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSInvalidClientIDException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidSelectorException.cs
      - copied, changed from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSInvalidSelectorException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageEOFException.cs
      - copied, changed from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageEOFException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageFormatException.cs
      - copied, changed from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageFormatException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageNotReadableException.cs
      - copied, changed from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageNotReadableException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageNotWriteableException.cs
      - copied, changed from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageNotWriteableException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/ResourceAllocationException.cs
      - copied, changed from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSResourceAllocationException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/TransactionInProgressException.cs
      - copied, changed from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSTransactionInProgressException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/TransactionRolledBackException.cs
      - copied, changed from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSTransactionRolledBackException.cs
Removed:
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSIllegalStateException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSInvalidClientIDException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSInvalidSelectorException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageEOFException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageFormatException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageNotReadableException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageNotWriteableException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSResourceAllocationException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSTransactionInProgressException.cs
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSTransactionRolledBackException.cs
Modified:
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidDestinationException.cs
    activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj

Copied: 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IllegalStateException.cs
 (from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSIllegalStateException.cs)
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IllegalStateException.cs?p2=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IllegalStateException.cs&p1=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSIllegalStateException.cs&r1=751869&r2=752553&rev=752553&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSIllegalStateException.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IllegalStateException.cs
 Wed Mar 11 18:36:05 2009
@@ -22,24 +22,24 @@
 namespace Apache.NMS
 {
        [Serializable]
-       public class NMSIllegalStateException : NMSException
+       public class IllegalStateException : NMSException
        {
-               public NMSIllegalStateException(string message)
+               public IllegalStateException(string message)
                        : base(message)
                {
                }
 
-               public NMSIllegalStateException(string message, string 
errorCode)
+               public IllegalStateException(string message, string errorCode)
                        : base(message, errorCode)
                {
                }
 
-               public NMSIllegalStateException(string message, Exception 
innerException)
+               public IllegalStateException(string message, Exception 
innerException)
                        : base(message, innerException)
                {
                }
 
-               public NMSIllegalStateException(string message, string 
errorCode, Exception innerException)
+               public IllegalStateException(string message, string errorCode, 
Exception innerException)
                        : base(message, errorCode, innerException)
                {
                }

Copied: 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidClientIDException.cs
 (from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSInvalidClientIDException.cs)
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidClientIDException.cs?p2=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidClientIDException.cs&p1=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSInvalidClientIDException.cs&r1=751869&r2=752553&rev=752553&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSInvalidClientIDException.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidClientIDException.cs
 Wed Mar 11 18:36:05 2009
@@ -22,24 +22,24 @@
 namespace Apache.NMS
 {
        [Serializable]
-       public class NMSInvalidClientIDException : NMSException
+       public class InvalidClientIDException : NMSException
        {
-               public NMSInvalidClientIDException(string message)
+               public InvalidClientIDException(string message)
                        : base(message)
                {
                }
 
-               public NMSInvalidClientIDException(string message, string 
errorCode)
+               public InvalidClientIDException(string message, string 
errorCode)
                        : base(message, errorCode)
                {
                }
 
-               public NMSInvalidClientIDException(string message, Exception 
innerException)
+               public InvalidClientIDException(string message, Exception 
innerException)
                        : base(message, innerException)
                {
                }
 
-               public NMSInvalidClientIDException(string message, string 
errorCode, Exception innerException)
+               public InvalidClientIDException(string message, string 
errorCode, Exception innerException)
                        : base(message, errorCode, innerException)
                {
                }

Modified: 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidDestinationException.cs
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidDestinationException.cs?rev=752553&r1=752552&r2=752553&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidDestinationException.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidDestinationException.cs
 Wed Mar 11 18:36:05 2009
@@ -27,11 +27,21 @@
                        : base(message)
                {
                }
-               
+
+               public InvalidDestinationException(string message, string 
errorCode)
+                       : base(message, errorCode)
+               {
+               }
+
                public InvalidDestinationException(string message, Exception 
innerException)
                        : base(message, innerException)
                {
                }
+
+               public InvalidDestinationException(string message, string 
errorCode, Exception innerException)
+                       : base(message, errorCode, innerException)
+               {
+               }
        }
 }
 

Copied: 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidSelectorException.cs
 (from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSInvalidSelectorException.cs)
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidSelectorException.cs?p2=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidSelectorException.cs&p1=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSInvalidSelectorException.cs&r1=751869&r2=752553&rev=752553&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSInvalidSelectorException.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/InvalidSelectorException.cs
 Wed Mar 11 18:36:05 2009
@@ -22,24 +22,24 @@
 namespace Apache.NMS
 {
        [Serializable]
-       public class NMSInvalidSelectorException : NMSException
+       public class InvalidSelectorException : NMSException
        {
-               public NMSInvalidSelectorException(string message)
+               public InvalidSelectorException(string message)
                        : base(message)
                {
                }
 
-               public NMSInvalidSelectorException(string message, string 
errorCode)
+               public InvalidSelectorException(string message, string 
errorCode)
                        : base(message, errorCode)
                {
                }
 
-               public NMSInvalidSelectorException(string message, Exception 
innerException)
+               public InvalidSelectorException(string message, Exception 
innerException)
                        : base(message, innerException)
                {
                }
 
-               public NMSInvalidSelectorException(string message, string 
errorCode, Exception innerException)
+               public InvalidSelectorException(string message, string 
errorCode, Exception innerException)
                        : base(message, errorCode, innerException)
                {
                }

Copied: 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageEOFException.cs
 (from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageEOFException.cs)
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageEOFException.cs?p2=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageEOFException.cs&p1=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageEOFException.cs&r1=751869&r2=752553&rev=752553&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageEOFException.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageEOFException.cs
 Wed Mar 11 18:36:05 2009
@@ -22,24 +22,24 @@
 namespace Apache.NMS
 {
        [Serializable]
-       public class NMSMessageEOFException : NMSException
+       public class MessageEOFException : NMSException
        {
-               public NMSMessageEOFException(string message)
+               public MessageEOFException(string message)
                        : base(message)
                {
                }
 
-               public NMSMessageEOFException(string message, string errorCode)
+               public MessageEOFException(string message, string errorCode)
                        : base(message, errorCode)
                {
                }
 
-               public NMSMessageEOFException(string message, Exception 
innerException)
+               public MessageEOFException(string message, Exception 
innerException)
                        : base(message, innerException)
                {
                }
 
-               public NMSMessageEOFException(string message, string errorCode, 
Exception innerException)
+               public MessageEOFException(string message, string errorCode, 
Exception innerException)
                        : base(message, errorCode, innerException)
                {
                }

Copied: 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageFormatException.cs
 (from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageFormatException.cs)
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageFormatException.cs?p2=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageFormatException.cs&p1=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageFormatException.cs&r1=751869&r2=752553&rev=752553&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageFormatException.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageFormatException.cs
 Wed Mar 11 18:36:05 2009
@@ -22,24 +22,24 @@
 namespace Apache.NMS
 {
        [Serializable]
-       public class NMSMessageFormatException : NMSException
+       public class MessageFormatException : NMSException
        {
-               public NMSMessageFormatException(string message)
+               public MessageFormatException(string message)
                        : base(message)
                {
                }
 
-               public NMSMessageFormatException(string message, string 
errorCode)
+               public MessageFormatException(string message, string errorCode)
                        : base(message, errorCode)
                {
                }
 
-               public NMSMessageFormatException(string message, Exception 
innerException)
+               public MessageFormatException(string message, Exception 
innerException)
                        : base(message, innerException)
                {
                }
 
-               public NMSMessageFormatException(string message, string 
errorCode, Exception innerException)
+               public MessageFormatException(string message, string errorCode, 
Exception innerException)
                        : base(message, errorCode, innerException)
                {
                }

Copied: 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageNotReadableException.cs
 (from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageNotReadableException.cs)
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageNotReadableException.cs?p2=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageNotReadableException.cs&p1=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageNotReadableException.cs&r1=751869&r2=752553&rev=752553&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageNotReadableException.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageNotReadableException.cs
 Wed Mar 11 18:36:05 2009
@@ -22,24 +22,24 @@
 namespace Apache.NMS
 {
        [Serializable]
-       public class NMSMessageNotReadableException : NMSException
+       public class MessageNotReadableException : NMSException
        {
-               public NMSMessageNotReadableException(string message)
+               public MessageNotReadableException(string message)
                        : base(message)
                {
                }
 
-               public NMSMessageNotReadableException(string message, string 
errorCode)
+               public MessageNotReadableException(string message, string 
errorCode)
                        : base(message, errorCode)
                {
                }
 
-               public NMSMessageNotReadableException(string message, Exception 
innerException)
+               public MessageNotReadableException(string message, Exception 
innerException)
                        : base(message, innerException)
                {
                }
 
-               public NMSMessageNotReadableException(string message, string 
errorCode, Exception innerException)
+               public MessageNotReadableException(string message, string 
errorCode, Exception innerException)
                        : base(message, errorCode, innerException)
                {
                }

Copied: 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageNotWriteableException.cs
 (from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageNotWriteableException.cs)
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageNotWriteableException.cs?p2=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageNotWriteableException.cs&p1=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageNotWriteableException.cs&r1=751869&r2=752553&rev=752553&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSMessageNotWriteableException.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageNotWriteableException.cs
 Wed Mar 11 18:36:05 2009
@@ -22,24 +22,24 @@
 namespace Apache.NMS
 {
        [Serializable]
-       public class NMSMessageNotWriteableException : NMSException
+       public class MessageNotWriteableException : NMSException
        {
-               public NMSMessageNotWriteableException(string message)
+               public MessageNotWriteableException(string message)
                        : base(message)
                {
                }
 
-               public NMSMessageNotWriteableException(string message, string 
errorCode)
+               public MessageNotWriteableException(string message, string 
errorCode)
                        : base(message, errorCode)
                {
                }
 
-               public NMSMessageNotWriteableException(string message, 
Exception innerException)
+               public MessageNotWriteableException(string message, Exception 
innerException)
                        : base(message, innerException)
                {
                }
 
-               public NMSMessageNotWriteableException(string message, string 
errorCode, Exception innerException)
+               public MessageNotWriteableException(string message, string 
errorCode, Exception innerException)
                        : base(message, errorCode, innerException)
                {
                }

Copied: 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/ResourceAllocationException.cs
 (from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSResourceAllocationException.cs)
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/ResourceAllocationException.cs?p2=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/ResourceAllocationException.cs&p1=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSResourceAllocationException.cs&r1=751869&r2=752553&rev=752553&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSResourceAllocationException.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/ResourceAllocationException.cs
 Wed Mar 11 18:36:05 2009
@@ -22,24 +22,24 @@
 namespace Apache.NMS
 {
        [Serializable]
-       public class NMSResourceAllocationException : NMSException
+       public class ResourceAllocationException : NMSException
        {
-               public NMSResourceAllocationException(string message)
+               public ResourceAllocationException(string message)
                        : base(message)
                {
                }
 
-               public NMSResourceAllocationException(string message, string 
errorCode)
+               public ResourceAllocationException(string message, string 
errorCode)
                        : base(message, errorCode)
                {
                }
 
-               public NMSResourceAllocationException(string message, Exception 
innerException)
+               public ResourceAllocationException(string message, Exception 
innerException)
                        : base(message, innerException)
                {
                }
 
-               public NMSResourceAllocationException(string message, string 
errorCode, Exception innerException)
+               public ResourceAllocationException(string message, string 
errorCode, Exception innerException)
                        : base(message, errorCode, innerException)
                {
                }

Copied: 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/TransactionInProgressException.cs
 (from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSTransactionInProgressException.cs)
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/TransactionInProgressException.cs?p2=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/TransactionInProgressException.cs&p1=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSTransactionInProgressException.cs&r1=751869&r2=752553&rev=752553&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSTransactionInProgressException.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/TransactionInProgressException.cs
 Wed Mar 11 18:36:05 2009
@@ -22,24 +22,24 @@
 namespace Apache.NMS
 {
        [Serializable]
-       public class NMSTransactionInProgressException : NMSException
+       public class TransactionInProgressException : NMSException
        {
-               public NMSTransactionInProgressException(string message)
+               public TransactionInProgressException(string message)
                        : base(message)
                {
                }
 
-               public NMSTransactionInProgressException(string message, string 
errorCode)
+               public TransactionInProgressException(string message, string 
errorCode)
                        : base(message, errorCode)
                {
                }
 
-               public NMSTransactionInProgressException(string message, 
Exception innerException)
+               public TransactionInProgressException(string message, Exception 
innerException)
                        : base(message, innerException)
                {
                }
 
-               public NMSTransactionInProgressException(string message, string 
errorCode, Exception innerException)
+               public TransactionInProgressException(string message, string 
errorCode, Exception innerException)
                        : base(message, errorCode, innerException)
                {
                }

Copied: 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/TransactionRolledBackException.cs
 (from r751869, 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSTransactionRolledBackException.cs)
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/TransactionRolledBackException.cs?p2=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/TransactionRolledBackException.cs&p1=activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSTransactionRolledBackException.cs&r1=751869&r2=752553&rev=752553&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSTransactionRolledBackException.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/TransactionRolledBackException.cs
 Wed Mar 11 18:36:05 2009
@@ -22,24 +22,24 @@
 namespace Apache.NMS
 {
        [Serializable]
-       public class NMSTransactionRolledBackException : NMSException
+       public class TransactionRolledBackException : NMSException
        {
-               public NMSTransactionRolledBackException(string message)
+               public TransactionRolledBackException(string message)
                        : base(message)
                {
                }
 
-               public NMSTransactionRolledBackException(string message, string 
errorCode)
+               public TransactionRolledBackException(string message, string 
errorCode)
                        : base(message, errorCode)
                {
                }
 
-               public NMSTransactionRolledBackException(string message, 
Exception innerException)
+               public TransactionRolledBackException(string message, Exception 
innerException)
                        : base(message, innerException)
                {
                }
 
-               public NMSTransactionRolledBackException(string message, string 
errorCode, Exception innerException)
+               public TransactionRolledBackException(string message, string 
errorCode, Exception innerException)
                        : base(message, errorCode, innerException)
                {
                }

Modified: activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj?rev=752553&r1=752552&r2=752553&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj (original)
+++ activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj Wed Mar 11 
18:36:05 2009
@@ -51,14 +51,14 @@
     <Compile Include="src\main\csharp\IConnection.cs" />
     <Compile Include="src\main\csharp\IConnectionFactory.cs" />
     <Compile Include="src\main\csharp\IDestination.cs" />
-    <Compile Include="src\main\csharp\NMSIllegalStateException.cs" />
+    <Compile Include="src\main\csharp\IllegalStateException.cs" />
     <Compile Include="src\main\csharp\IMapMessage.cs" />
     <Compile Include="src\main\csharp\IMessage.cs" />
     <Compile Include="src\main\csharp\IMessageConsumer.cs" />
     <Compile Include="src\main\csharp\IMessageProducer.cs" />
-    <Compile Include="src\main\csharp\NMSInvalidClientIDException.cs" />
+    <Compile Include="src\main\csharp\InvalidClientIDException.cs" />
     <Compile Include="src\main\csharp\InvalidDestinationException.cs" />
-    <Compile Include="src\main\csharp\NMSInvalidSelectorException.cs" />
+    <Compile Include="src\main\csharp\InvalidSelectorException.cs" />
     <Compile Include="src\main\csharp\IObjectMessage.cs" />
     <Compile Include="src\main\csharp\IPrimitiveMap.cs" />
     <Compile Include="src\main\csharp\IQueue.cs" />
@@ -70,19 +70,19 @@
     <Compile Include="src\main\csharp\ITextMessage.cs" />
     <Compile Include="src\main\csharp\ITopic.cs" />
     <Compile Include="src\main\csharp\ITrace.cs" />
-    <Compile Include="src\main\csharp\NMSMessageEOFException.cs" />
-    <Compile Include="src\main\csharp\NMSMessageFormatException.cs" />
-    <Compile Include="src\main\csharp\NMSMessageNotReadableException.cs" />
-    <Compile Include="src\main\csharp\NMSMessageNotWriteableException.cs" />
+    <Compile Include="src\main\csharp\MessageEOFException.cs" />
+    <Compile Include="src\main\csharp\MessageFormatException.cs" />
+    <Compile Include="src\main\csharp\MessageNotReadableException.cs" />
+    <Compile Include="src\main\csharp\MessageNotWriteableException.cs" />
     <Compile Include="src\main\csharp\NMSConnectionException.cs" />
     <Compile Include="src\main\csharp\NMSConstants.cs" />
     <Compile Include="src\main\csharp\NMSException.cs" />
     <Compile Include="src\main\csharp\NMSConnectionFactory.cs" />
     <Compile Include="src\main\csharp\NMSSecurityException.cs" />
-    <Compile Include="src\main\csharp\NMSResourceAllocationException.cs" />
+    <Compile Include="src\main\csharp\ResourceAllocationException.cs" />
     <Compile Include="src\main\csharp\Tracer.cs" />
-    <Compile Include="src\main\csharp\NMSTransactionInProgressException.cs" />
-    <Compile Include="src\main\csharp\NMSTransactionRolledBackException.cs" />
+    <Compile Include="src\main\csharp\TransactionInProgressException.cs" />
+    <Compile Include="src\main\csharp\TransactionRolledBackException.cs" />
     <Compile Include="src\main\csharp\Util\Atomic.cs" />
     <Compile Include="src\main\csharp\Util\AtomicBoolean.cs" />
     <Compile Include="src\main\csharp\Util\AtomicReference.cs" />


Reply via email to