1 18 package org.objectweb.perseus.persistence.concurrency; 19 20 import org.objectweb.perseus.concurrency.api.ConcurrencyException; 21 22 28 public class NoDSIConcurrencyException extends ConcurrencyException { 29 public NoDSIConcurrencyException() { 30 } 31 32 public NoDSIConcurrencyException(String msg) { 33 super(msg); 34 } 35 36 public NoDSIConcurrencyException(Exception nested) { 37 super(nested); 38 } 39 40 public NoDSIConcurrencyException(String msg, Exception nested) { 41 super(msg, nested); 42 } 43 } 44 | Popular Tags |