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

com.gitlab.oliverlj.jsonapi.exceptions.ResourceNotFoundException Maven / Gradle / Ivy

package com.gitlab.oliverlj.jsonapi.exceptions;

import lombok.NoArgsConstructor;

/**
 * A generic exception for a resource not found.
 * 
 * @author Olivier LE JACQUES ([email protected])
 * 
 */
@NoArgsConstructor
public class ResourceNotFoundException extends RuntimeException {

  private static final long serialVersionUID = -7732588675951984494L;

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy