All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jaxws.wsdl2bytecodes.service.WsdlImportException Maven / Gradle / Ivy

package org.jaxws.wsdl2bytecodes.service;

/**
 * 
 * @author chenjianjx
 * 
 */
public class WsdlImportException extends Exception {

	private static final long serialVersionUID = -1197961204211671600L;

	// the reason should be eligible to be read by end-user
	private String readableReason;

	public WsdlImportException(String readableReason) {
		super();
		this.readableReason = readableReason;
	}

	public String getReadableReason() {
		return readableReason;
	}
	
	@Override
	public String getMessage() { 
		return "\n" + readableReason;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy