org.ow2.petals.ws.fault.WsnFault Maven / Gradle / Ivy
The newest version!
/**
* PETALS - PETALS Services Platform.
* Copyright (c) 2007 EBM Websourcing, http://www.ebmwebsourcing.com/
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* -------------------------------------------------------------------------
* $Id$
* -------------------------------------------------------------------------
*/
package org.ow2.petals.ws.fault;
import java.io.PrintStream;
import java.io.PrintWriter;
/**
* @author chamerling - eBM WebSourcing
*
*/
public class WsnFault extends Exception {
private static final long serialVersionUID = 1978L;
/**
* Creates a new instance of {@link WsnFault}
*
* @param
*/
public WsnFault(String message) {
super(message);
}
/*
* (non-Javadoc)
*
* @see java.lang.Throwable#fillInStackTrace()
*/
@Override
public synchronized Throwable fillInStackTrace() {
// TODO Auto-generated method stub
return super.fillInStackTrace();
}
/*
* (non-Javadoc)
*
* @see java.lang.Throwable#getCause()
*/
@Override
public Throwable getCause() {
// TODO Auto-generated method stub
return super.getCause();
}
/*
* (non-Javadoc)
*
* @see java.lang.Throwable#getLocalizedMessage()
*/
@Override
public String getLocalizedMessage() {
// TODO Auto-generated method stub
return super.getLocalizedMessage();
}
/*
* (non-Javadoc)
*
* @see java.lang.Throwable#getMessage()
*/
@Override
public String getMessage() {
// TODO Auto-generated method stub
return super.getMessage();
}
/*
* (non-Javadoc)
*
* @see java.lang.Throwable#getStackTrace()
*/
@Override
public StackTraceElement[] getStackTrace() {
// TODO Auto-generated method stub
return super.getStackTrace();
}
/*
* (non-Javadoc)
*
* @see java.lang.Throwable#initCause(java.lang.Throwable)
*/
@Override
public synchronized Throwable initCause(Throwable cause) {
// TODO Auto-generated method stub
return super.initCause(cause);
}
/*
* (non-Javadoc)
*
* @see java.lang.Throwable#printStackTrace()
*/
@Override
public void printStackTrace() {
// TODO Auto-generated method stub
super.printStackTrace();
}
/*
* (non-Javadoc)
*
* @see java.lang.Throwable#printStackTrace(java.io.PrintStream)
*/
@Override
public void printStackTrace(PrintStream s) {
// TODO Auto-generated method stub
super.printStackTrace(s);
}
/*
* (non-Javadoc)
*
* @see java.lang.Throwable#printStackTrace(java.io.PrintWriter)
*/
@Override
public void printStackTrace(PrintWriter s) {
// TODO Auto-generated method stub
super.printStackTrace(s);
}
/*
* (non-Javadoc)
*
* @see java.lang.Throwable#setStackTrace(java.lang.StackTraceElement[])
*/
@Override
public void setStackTrace(StackTraceElement[] stackTrace) {
// TODO Auto-generated method stub
super.setStackTrace(stackTrace);
}
/*
* (non-Javadoc)
*
* @see java.lang.Throwable#toString()
*/
@Override
public String toString() {
// TODO Auto-generated method stub
return super.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy