package pwc.taxtech.atms.exception;

import org.springframework.http.ResponseEntity;

public class NotFoundException extends ApiException {
    @Override
    public <Object> ResponseEntity handle() {
        return ResponseEntity.notFound().build();
    }
}