All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.longdt.vertxorm.repository.EntityNotFoundException Maven / Gradle / Ivy

package com.github.longdt.vertxorm.repository;

public class EntityNotFoundException extends RuntimeException {

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

    public EntityNotFoundException(String message, Throwable cause) {
        super(message, cause);
    }

    public EntityNotFoundException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy