
org.smallibs.exception.PromiseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hpas Show documentation
Show all versions of hpas Show documentation
Functional ADT And Asynchronous library in Java
/*
* HPAS
* https://github.com/d-plaindoux/hpas
*
* Copyright (c) 2016 Didier Plaindoux
* Licensed under the LGPL2 license.
*/
package org.smallibs.exception;
public class PromiseException extends Exception {
public PromiseException(Throwable cause) {
super(cause);
}
}