[jboss-cvs] JBossCache/src/org/jboss/cache/marshall ...
Vladmir Blagojevic
vladimir.blagojevic at jboss.com
Tue Nov 14 14:56:09 EST 2006
User: vblagojevic
Date: 06/11/14 14:56:09
Modified: src/org/jboss/cache/marshall TreeCacheMarshaller200.java
Log:
[JBCACHE-591] partial state transfer
Revision Changes Path
1.9 +4 -2 JBossCache/src/org/jboss/cache/marshall/TreeCacheMarshaller200.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: TreeCacheMarshaller200.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/marshall/TreeCacheMarshaller200.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- TreeCacheMarshaller200.java 6 Nov 2006 23:34:09 -0000 1.8
+++ TreeCacheMarshaller200.java 14 Nov 2006 19:56:09 -0000 1.9
@@ -116,13 +116,15 @@
{
if (!region.isActive())
{
- throw new InactiveRegionException();
+ throw new InactiveRegionException("Cannot unmarshall message for region " + fqn
+ + ". This region is inactive.");
}
}
else if (defaultInactive)
{
// No region but default inactive means region is inactive
- throw new InactiveRegionException();
+ throw new InactiveRegionException("Cannot unmarshall message for region " + fqn + ". By default region " + fqn
+ + " is inactive.");
}
return region;
More information about the jboss-cvs-commits
mailing list