001package gu.dtalk.exception; 002 003public class DtalkException extends Exception { 004 005 private static final long serialVersionUID = 1L; 006 007 public DtalkException() { 008 } 009 010 public DtalkException(String message) { 011 super(message); 012 } 013 014 public DtalkException(Throwable cause) { 015 super(cause); 016 } 017 018 public DtalkException(String message, Throwable cause) { 019 super(message, cause); 020 } 021 022}