GoalNotFoundException.java

package com.distasilucas.cryptobalancetracker.exception;

public class GoalNotFoundException extends RuntimeException {

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