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

com.greenpepper.server.license.GreenPepperLicenceException Maven / Gradle / Ivy

package com.greenpepper.server.license;

import com.greenpepper.server.GreenPepperServerException;

/**
 * 

GreenPepperLicenceException class.

* * @author oaouattara * @version $Id: $Id */ @SuppressWarnings("serial") public class GreenPepperLicenceException extends GreenPepperServerException { /** *

Constructor for GreenPepperLicenceException.

*/ public GreenPepperLicenceException() { super(); } /** *

Constructor for GreenPepperLicenceException.

* * @param th a {@link java.lang.Throwable} object. */ public GreenPepperLicenceException(Throwable th) { super(th); } /** *

Constructor for GreenPepperLicenceException.

* * @param id a {@link java.lang.String} object. * @param msg a {@link java.lang.String} object. */ public GreenPepperLicenceException(String id, String msg) { super(id, msg); } /** *

Constructor for GreenPepperLicenceException.

* * @param id a {@link java.lang.String} object. * @param msg a {@link java.lang.String} object. * @param th a {@link java.lang.Throwable} object. */ public GreenPepperLicenceException(String id, String msg, Throwable th) { super(id, msg, th); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy