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

com.emc.vipr.client.exceptions.ViPRException Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2015 EMC Corporation
 * All Rights Reserved
 */
package com.emc.vipr.client.exceptions;

public class ViPRException extends RuntimeException {
    public ViPRException() {
    }

    public ViPRException(String s) {
        super(s);
    }

    public ViPRException(String s, Throwable throwable) {
        super(s, throwable);
    }

    public ViPRException(Throwable throwable) {
        super(throwable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy