1 17 18 19 20 package org.apache.lenya.cms.publishing; 21 22 public class PublishingException extends Exception { 23 26 public PublishingException() { 27 } 28 29 34 public PublishingException(String message) { 35 super(message); 36 } 37 38 44 public PublishingException(String message, Throwable cause) { 45 super(message + " " + cause.getMessage()); 46 } 47 48 53 public PublishingException(Throwable cause) { 54 super(cause.getMessage()); 55 } 56 } 57 | Popular Tags |