Red Hat Training

A Red Hat training course is available for JBoss Enterprise SOA Platform

4.2.14. Fault Message Format

This is the format of a message indicating a fault:
  public interface Fault
{
	public URI getCode ();
	public void setCode (URI code);
	
	public String getReason ();
	public void setReason (String reason);
	
	public Throwable getCause ();
	public void setCause (Throwable ex);
}