Package org.araneaframework.core

Examples of org.araneaframework.core.NoCurrentOutputDataSetException


  }

  public OutputData getCurrentOutputData() {
    OutputData output = (OutputData)req.getAttribute(StandardServletServiceAdapterComponent.OUTPUT_DATA_REQUEST_ATTRIBUTE);
    if (output == null)
      throw new NoCurrentOutputDataSetException("No OutputData set in the request.");
    else
      return output;
  }
View Full Code Here

TOP

Related Classes of org.araneaframework.core.NoCurrentOutputDataSetException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.