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

com.jd.blockchain.ledger.UserDoesNotExistException Maven / Gradle / Ivy

package com.jd.blockchain.ledger;

public class UserDoesNotExistException extends LedgerException {

	private static final long serialVersionUID = 397450363050148898L;

	public UserDoesNotExistException(String message) {
		super(message);
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy