1 22 23 package org.xquark.mediator.runtime; 24 25 26 public class MediatorException extends org.xquark.xquery.parser.XQueryException { 27 28 private static final String RCSRevision = "$Revision: 1.1 $"; 32 private static final String RCSName = "$Name: $"; 33 34 public MediatorException(int code) { 35 super(code); 36 } 37 38 42 public MediatorException(java.lang.String msg) { 43 super(msg); 44 } 45 46 51 public MediatorException(int code, java.lang.String msg) { 52 super(code, msg, null); 53 } 54 55 60 public MediatorException(java.lang.String msg, java.lang.Throwable exception) { 61 super(msg, exception); 62 } 63 64 70 public MediatorException(int code, java.lang.String msg, java.lang.Throwable exception) { 71 super(code,msg,exception); 72 } 73 74 } 75 76 77 78 79 80 81 82 83 84 85 86 87 | Popular Tags |