001/*
002 * Copyright (c) 2013 Nu Echo Inc. All rights reserved.
003 */
004
005package com.nuecho.rivr.voicexml.rendering.voicexml;
006
007/**
008 * Error during generation of VoiceXML document.
009 * 
010 * @author Nu Echo Inc.
011 */
012public class VoiceXmlDocumentRenderingException extends Exception {
013
014    private static final long serialVersionUID = 1L;
015
016    public VoiceXmlDocumentRenderingException() {}
017
018    public VoiceXmlDocumentRenderingException(String message) {
019        super(message);
020    }
021
022    public VoiceXmlDocumentRenderingException(Throwable cause) {
023        super(cause);
024    }
025
026    public VoiceXmlDocumentRenderingException(String message, Throwable cause) {
027        super(message, cause);
028    }
029
030}