001// ______________________________________________________
002// Generated by sql2java - https://github.com/10km/sql2java-2-6-7 (custom branch) 
003// modified by guyadong from
004// sql2java original version https://sourceforge.net/projects/sql2java/ 
005// JDBC driver used at code generation time: com.mysql.jdbc.Driver
006// template: object.retrieval.exception.java.vm
007// ______________________________________________________
008package net.gdface.facelog.db.exception;
009
010/**
011 *
012 * @author guyadong
013 */
014public class ObjectRetrievalException extends RuntimeException {
015
016        private static final long serialVersionUID = -6727843698593429999L;
017
018        public ObjectRetrievalException() {
019        }
020
021        public ObjectRetrievalException(String reason) {
022                super(reason);
023        }
024
025        public ObjectRetrievalException(Throwable cause) {
026                super(cause);
027        }
028
029        public ObjectRetrievalException(String reason, Throwable cause) {
030                super(reason, cause);
031        }
032
033}