1 38 39 package org.jahia.services.cache; 40 41 import org.jahia.exceptions.JahiaException; 42 43 44 50 class JMSConnectionException extends JahiaException { 51 52 57 public JMSConnectionException (String message) { 58 super ("JMS Connection error", message, JahiaException.SERVICE_ERROR, 59 JahiaException.CRITICAL_SEVERITY, null); 60 } 61 62 69 public JMSConnectionException (String message, Throwable t) { 70 super ("JMS Connection error", message, JahiaException.SERVICE_ERROR, 71 JahiaException.CRITICAL_SEVERITY, t); 72 } 73 74 } | Popular Tags |