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

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

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

/**
 * Indicates an error when attempting to instantiate an instance of the
 * specified entity type
 * 
 * @author bdferris
 */
public class EntityInstantiationException extends CsvEntityException {

  private static final long serialVersionUID = 1L;

  public EntityInstantiationException(Class entityType, Throwable cause) {
    super(entityType, "error instantiating entity of type="
        + entityType.getName(), cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy