1 package org.jboss.cache.optimistic; 2 3 import org.jboss.cache.CacheException; 4 5 11 public class DataVersioningException extends CacheException 12 { 13 14 private static final long serialVersionUID = 7234086816998964356L; 15 16 public DataVersioningException() 17 { 18 } 19 20 public DataVersioningException(String msg) 21 { 22 super(msg); 23 } 24 25 public DataVersioningException(String msg, Throwable cause) 26 { 27 super(msg, cause); 28 } 29 } 30 | Popular Tags |