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

com.draagon.meta.ValueException 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;

/**
 * Value exceptions are when problems are encountered with
 * the value of an object.
 */
@SuppressWarnings("serial")
public abstract class ValueException extends RuntimeException
{
  public ValueException( String msg, Throwable t )
  {
    super( msg, t );
  }

  public ValueException( String msg )
  {
    super( msg );
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy