1 10 11 package org.mule.test.integration.service; 12 13 public class TestComponentException extends Exception  14 { 15 private static final long serialVersionUID = -3906931231398539327L; 16 17 public static final String MESSAGE_PREFIX = "Message: "; 18 19 public TestComponentException(String message) 20 { 21 super(MESSAGE_PREFIX + message); 22 } 23 24 } 25 | Popular Tags |