![JAR search and dependency download from the Maven repository](/logo.png)
com.singingbush.dubclient.DubRepositoryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dub-client Show documentation
Show all versions of dub-client Show documentation
Conveniently call the REST API on code.dlang.org and other DUB repositories
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