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

com.singingbush.dubclient.DubRepositoryException Maven / Gradle / Ivy

Go to download

Conveniently call the REST API on code.dlang.org and other DUB repositories

There is a newer version: 0.3.0
Show newest version
package com.singingbush.dubclient;

/**
 * @author Samael Bate (singingbush)
 * created on 16/06/18
 */
public class DubRepositoryException extends Throwable {

    public DubRepositoryException(final String message) {
        super(message);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy