1 package org.apache.axis2.handlers.addressing; 2 3 20 21 public class AddressingException extends Exception { 22 public AddressingException() { 23 } 24 25 public AddressingException(String message) { 26 super(message); 27 } 28 29 public AddressingException(Throwable cause) { 30 super(cause); 31 } 32 33 public AddressingException(String message, Throwable cause) { 34 super(message, cause); 35 } 36 } 37 | Popular Tags |