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

io.takamaka.wallet.exceptions.UnlockWalletException 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 UnlockWalletException extends WalletException {

    public UnlockWalletException() {
        super();
    }

    public UnlockWalletException(String msg) {
        super(msg);
    }

    public UnlockWalletException(Throwable er) {
        super(er);
    }

    public UnlockWalletException(String msg,Throwable er) {
        super(msg, er);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy