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

com.cedarsoft.NotFoundException Maven / Gradle / Ivy

The newest version!
package com.cedarsoft;

/**
 *
 */
public class NotFoundException extends RuntimeException {
  public NotFoundException() {
  }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy