1 28 29 package org.apache.commons.transaction.file; 30 31 37 public class ResourceManagerSystemException extends ResourceManagerException { 38 public ResourceManagerSystemException(String message, int status, Object txId, Throwable cause) { 39 super(message, status, txId, cause); 40 } 41 42 public ResourceManagerSystemException(String message, int status, Object txId) { 43 super(message, status, txId); 44 } 45 46 public ResourceManagerSystemException(int status, Object txId, Throwable cause) { 47 super(status, txId, cause); 48 } 49 50 public ResourceManagerSystemException(int status, Object txId) { 51 super(status, txId); 52 } 53 } 54 | Popular Tags |