Package coldfusion.server

Examples of coldfusion.server.ServiceException


  public void setMaxQueryCount(Number maxQueryCount) {
    this.maxQueryCount=maxQueryCount;
  }

  public String encryptPassword(String pass) {
    throw new PageRuntimeException(new ServiceException("method [encryptPassword] is not supported for datasource service"));
    //return pass;
  }
View Full Code Here


    return db.getPath();
  }

  @Override
  public Object getCachedQuery(String key) {
    throw new PageRuntimeException(new ServiceException("method [getQueryCache] is not supported for datasource service"));
    //pageContext.getQueryCache().getQuery(sql,datasource,username,password,cachedafter)
    // return null;
  }
View Full Code Here

    // return null;
  }

  @Override
  public void setCachedQuery(String arg0, Object arg1) {
    throw new PageRuntimeException(new ServiceException("method [setQueryCache] is not supported for datasource service"));
  }
View Full Code Here

          rtn.setEL(name,driver);
        }
   
   
    } catch (ExpressionException e) {
      throw new ServiceException(e.getMessage());
    }
     
     
   
    return rtn;
View Full Code Here

TOP

Related Classes of coldfusion.server.ServiceException

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.