1 10 11 package org.mule.umo.lifecycle; 12 13 import org.mule.config.i18n.Message; 14 15 24 public class RecoverableException extends InitialisationException 25 { 26 29 private static final long serialVersionUID = -5799024626172482665L; 30 31 34 public RecoverableException(Message message, Object object) 35 { 36 super(message, object); 37 } 38 39 43 public RecoverableException(Message message, Object object, Throwable cause) 44 { 45 super(message, cause, object); 46 } 47 } 48 | Popular Tags |