1 16 package org.apache.axis2.om.impl.llom.exception; 17 18 import org.apache.axis2.om.OMException; 19 20 23 public class OMStreamingException extends OMException { 24 27 public OMStreamingException() { 28 } 29 30 35 public OMStreamingException(String message) { 36 super(message); 37 } 38 39 45 public OMStreamingException(String message, Throwable cause) { 46 super(message, cause); 47 } 48 49 54 public OMStreamingException(Throwable cause) { 55 super(cause); 56 } 57 } 58 | Popular Tags |