All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.x5.template.TemplateNotFoundException Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
package com.x5.template;

public class TemplateNotFoundException extends RuntimeException
{
    private String msg;
    private Throwable cause;

    public TemplateNotFoundException(String msg)
    {
        this.msg = msg;
    }

    public TemplateNotFoundException(String msg, Throwable cause)
    {
        this.msg = msg;
        this.cause = cause;
    }

    public String getMessage()
    {
        return msg;
    }

    public Throwable getRootCause()
    {
        return cause;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy