/* * Genoogle: Similar DNA Sequences Searching Engine and Tools. (http://genoogle.pih.bio.br) * Copyright (C) 2008,2009 Felipe Fernandes Albrecht (felipe.albrecht@gmail.com) * * For further information check the LICENSE file. */ package bio.pih.genoogle.io.reader; public class ParseException extends Exception { private static final long serialVersionUID = -7793639950738899503L; public ParseException(String cause) { super(cause); } }