PriceTargetNotFoundException.java

package com.distasilucas.cryptobalancetracker.exception;

public class PriceTargetNotFoundException extends RuntimeException {

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