001package com.aispeech.dui.dds.exceptions;
002
003/**
004 * DDS没有初始完成的异常
005 */
006public class DDSNotInitCompleteException extends Exception {
007
008    public static final String MSG = "You must init DDS first.";
009
010    public DDSNotInitCompleteException() {
011        super(MSG);
012    }
013
014    public DDSNotInitCompleteException(String message) {
015        super(MSG);
016    }
017}