1 /** 2 * Copyright (c) 2009-2010 by Glodon 3 * All rights reserved. 4 */ 5 package gboat2.base.dao.exception; 6 7 /** 8 * Transient异常,PO 中的字段标识为 @Transient 时抛出 9 * 10 * @author lysming 11 * 12 */ 13 public class TransientException extends RuntimeException { 14 15 private static final long serialVersionUID = 1L; 16 17 public TransientException(String message) { 18 super(message); 19 } 20 }