package com.taover.repository.exception; public class NotFoundException extends Exception { private Exception originError; public NotFoundException() {} public NotFoundException(Exception e) { this.originError = e; } }