1 package org.objectweb.celtix.plugins; 2 3 import org.objectweb.celtix.common.i18n.Exception; 4 import org.objectweb.celtix.common.i18n.Message; 5 6 9 public class PluginException extends Exception { 10 11 private static final long serialVersionUID = 1L; 12 13 16 public PluginException(Message msg) { 17 super(msg); 18 } 19 20 24 public PluginException(Message msg, Throwable cause) { 25 super(msg, cause); 26 } 27 } 28 | Popular Tags |