NotFoundException.java

package com.tradecloud.domain.exception;

public class NotFoundException extends InvalidEntityException {
    public NotFoundException(String message) {
        super(message);
    }
}