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

org.zodiac.ds.api.exception.DataSourceNotFoundException Maven / Gradle / Ivy

package org.zodiac.ds.api.exception;

import org.zodiac.reactor.exception.NotFoundException;

public class DataSourceNotFoundException extends NotFoundException {

    private static final long serialVersionUID = -8750742814977236806L;

    private String dataSourceId;

    public DataSourceNotFoundException(String dataSourceId) {
        this(dataSourceId, dataSourceId);
    }

    public DataSourceNotFoundException(String dataSourceId, String message) {
        super(message);
        this.dataSourceId = dataSourceId;
    }

    public String getDataSourceId() {
        return dataSourceId;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy