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

dev.galasa.cicsts.CemtException Maven / Gradle / Ivy

There is a newer version: 0.38.0
Show newest version

/*
 * Licensed Materials - Property of IBM
 * 
 * (c) Copyright IBM Corp. 2020.
 */

package dev.galasa.cicsts;

public class CemtException extends CemtManagerException {
   private static final long serialVersionUID = 1L;
   
   public CemtException() {
   }

   public CemtException(String message) {
       super(message);
   }

   public CemtException(Throwable cause) {
       super(cause);
   }

   public CemtException(String message, Throwable cause) {
       super(message, cause);
   }

   public CemtException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
       super(message, cause, enableSuppression, writableStackTrace);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy