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