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

com.imsweb.seerapi.client.SeerApiException Maven / Gradle / Ivy

There is a newer version: 5.7
Show newest version
/*
 * Copyright (C) 2015 Information Management Services, Inc.
 */
package com.imsweb.seerapi.client;

public class SeerApiException extends RuntimeException {

    public SeerApiException() {
        super();
    }

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy