io.takamaka.wallet.exceptions.HashProviderNotFoundException Maven / Gradle / Ivy
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package io.takamaka.wallet.exceptions;
/**
*
* @author Giovanni Antino [email protected]
*/
public class HashProviderNotFoundException extends ThreadSafeUtilsException{
public HashProviderNotFoundException() {
super();
}
public HashProviderNotFoundException(String msg) {
super(msg);
}
public HashProviderNotFoundException(Throwable er) {
super(er);
}
public HashProviderNotFoundException(String msg, Throwable er) {
super(msg, er);
}
}