blob: f8fa167e4782236d0563778b905406916ac5e8e3 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package freemarker.test.utility;
import freemarker.core.Environment;
import freemarker.template.utility.StringUtil;
/**
* Indicates that a named directive/function parameter is missing.
* This is will be public and go into the freemarker.core when the directive/method stuff was reworked.
*/
class MissingRequiredParameterException extends ParameterException {
public MissingRequiredParameterException(String parameterName, Environment env) {
this(parameterName, null, null, env);
}
public MissingRequiredParameterException(String parameterName, Exception cause, Environment env) {
this(parameterName, null, cause, env);
}
public MissingRequiredParameterException(String parameterName, String description, Environment env) {
this(parameterName, description, null, env);
}
public MissingRequiredParameterException(String parameterName, String description, Exception cause, Environment env) {
super(parameterName,
"Required parameter " + StringUtil.jQuote(parameterName) + " is missing, "
+ "or the parameter value was null."
+ (description != null ? " " + StringUtil.jQuote(description) : ""),
cause, env);
}
}