File src/de/openrat/client/util/CMSException.java
Last commit: Wed Dec 19 14:42:38 2018 +0100 Jan Dankert Move fields from the generic CMSExceptions to CMSServerErrorException.
1 package de.openrat.client.util; 2 3 public class CMSException extends RuntimeException 4 { 5 public CMSException(String message, Throwable cause) 6 { 7 super(message, cause); 8 } 9 10 public CMSException(String message) 11 { 12 super(message); 13 } 14 15 public CMSException(Throwable cause) 16 { 17 super(cause); 18 } 19 20 }
Downloadsrc/de/openrat/client/util/CMSException.java
History Wed, 19 Dec 2018 14:42:38 +0100 Jan Dankert Move fields from the generic CMSExceptions to CMSServerErrorException. Fri, 30 Sep 2016 22:45:01 +0200 dankert first version of the java api.