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

Alachisoft.NCache.Common.Exceptions.ManagementException Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package Alachisoft.NCache.Common.Exceptions;

import com.alachisoft.ncache.runtime.exceptions.CacheException;

/**
 * @author Muneeb Shahid
 */
public class ManagementException extends CacheException {

    /**
     * Creates a new instance of
     * ManagementException without detail message.
     */
    public ManagementException() {
    }

    /**
     * Constructs an instance of
     * ManagementException with the specified detail message.
     *
     * @param msg the detail message.
     */
    public ManagementException(String msg, Throwable e) {
        super(msg, e);
    }

    public ManagementException(String msg) {
        super(msg);
    }

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

    // TODO 5.0 SP3: This should be implemented with Exceptions User Story.
    public ManagementException(int errorCode, String errorMessage) {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy