RegionNameConflictException.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.cache.eviction; import org.jboss.util.NestedException; /** * Region name conflicts with pre-existing regions. * * @author Ben Wang 2-2004 */ public class RegionNameConflictException extends NestedException { public RegionNameConflictException() { super(); } public RegionNameConflictException(String msg) { super(msg); } public RegionNameConflictException(String msg, Throwable cause) { super(msg, cause); } }
RegionNameConflictException.java |