Package com.tridion.tcdl

Examples of com.tridion.tcdl.TCDLTransformerException


      log.debug("Setting context variable '{}' with value '{}'", var, date);
      context.set(var, date);
    } catch (ParseException pe) {
      log.error(pe.getMessage(), pe);
      throw new TCDLTransformerException(pe.getMessage(), pe);
    }

    return "";
  }
View Full Code Here


        context.set(var, result);
        log.debug("Setting context variable '{}' with value '{}'", var, result);
      }
    } catch (Exception e) {
      log.error(e.getMessage(), e);
      throw new TCDLTransformerException(e.getMessage(), e);
    }

    return tagBody.toString();
  }
View Full Code Here

TOP

Related Classes of com.tridion.tcdl.TCDLTransformerException

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.