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

com.draagon.meta.ValueNotFoundException Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2003 Draagon Software LLC. All Rights Reserved.
 *
 * This software is the proprietary information of Draagon Software LLC.
 * Use is subject to license terms.
 */
package com.draagon.meta;

/**
 * This exception should be thrown when an expected value
 * is not found.
 */
@SuppressWarnings("serial")
public class ValueNotFoundException extends ValueException  {

  public ValueNotFoundException( String msg, Throwable t )
  {
    super( msg, t );
  }
  public ValueNotFoundException( String msg )
  {
    super( msg );
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy