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