openrat-java-client

Unnamed repository; edit this file 'description' to name the repository.
git clone http://git.code.weiherhei.de/openrat-java-client.git
Log | Files | Refs

CMSConnectionException.java (848B)


      1 package de.openrat.client.util;
      2 
      3 public class CMSConnectionException extends CMSException
      4 {
      5 
      6 	private static final long serialVersionUID = 3734310284809339317L;
      7 
      8 	private String message;
      9 	private String status;
     10 	private String description;
     11 	private String reason;
     12 
     13 	public CMSConnectionException(String message, Throwable cause)
     14 	{
     15 		super(message, cause);
     16 	}
     17 
     18 	public CMSConnectionException(String message, String status, String description, String reason, Throwable cause)
     19 	{
     20 		super(message, cause);
     21 
     22 		this.message = message;
     23 		this.status = status;
     24 		this.description = description;
     25 		this.reason = reason;
     26 	}
     27 
     28 	public CMSConnectionException(String message, String status, String description, String reason)
     29 	{
     30 		super(message);
     31 
     32 		this.message = message;
     33 		this.status = status;
     34 		this.description = description;
     35 		this.reason = reason;
     36 	}
     37 }