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

org.onebusaway.gtfs.csv.exceptions.IntrospectionException Maven / Gradle / Ivy

There is a newer version: 1.3.4
Show newest version
package org.onebusaway.gtfs.csv.exceptions;

import java.beans.Introspector;

/**
 * Indicates that introspection failed for the specified entity type. Usually
 * indicates a failure with {@link Introspector#getBeanInfo(Class)}.
 * 
 * @author bdferris
 * @see Introspector#getBeanInfo(Class)
 */
public class IntrospectionException extends CsvEntityException {

  private static final long serialVersionUID = 1L;

  public IntrospectionException(Class entityType) {
    super(entityType, "introspection error for type " + entityType);
  }
  
  public IntrospectionException(Class entityType, Throwable cause) {
    super(entityType, "introspection error for type " + entityType,cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy