001package gu.dtalk;
002
003/**
004 * 数据转换异常
005 * @author guyadong
006 *
007 */
008public class TransformException extends Exception {
009
010        /**
011         * 
012         */
013        private static final long serialVersionUID = 1L;
014
015        public TransformException() {
016        }
017
018        public TransformException(String message) {
019                super(message);
020        }
021
022        public TransformException(Throwable cause) {
023                super(cause);
024        }
025
026        public TransformException(String message, Throwable cause) {
027                super(message, cause);
028        }
029
030
031}