1 /* 2 * Copyright 2012-2013 smartics, Kronseder & Reiner GmbH 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package de.smartics.properties.api.config.domain; 17 18 import de.smartics.properties.api.core.domain.PropertyValueResolveException; 19 20 /** 21 * Signals that the value cannot be resolve and provides information about the 22 * source location of the culprit. Therefore the expression contains unresolved 23 * placeholders. 24 */ 25 public class PropertyValueResolveWithSourceException extends 26 PropertyValueResolveException 27 { 28 // ********************************* Fields ********************************* 29 30 // --- constants ------------------------------------------------------------ 31 32 /** 33 * The class version identifier. 34 * <p> 35 * The value of this constant is {@value}. 36 * </p> 37 */ 38 private static final long serialVersionUID = 1L; 39 40 // --- members -------------------------------------------------------------- 41 42 // ****************************** Initializer ******************************* 43 44 // ****************************** Constructors ****************************** 45 46 /** 47 * Default constructor. 48 * 49 * @param message the detail message (which is saved for later retrieval by 50 * the {@link #getMessage()} method). 51 */ 52 public PropertyValueResolveWithSourceException( 53 final PropertyExpressionWithSourceMessageBean message) 54 { 55 super(message); 56 } 57 58 // ****************************** Inner Classes ***************************** 59 60 // ********************************* Methods ******************************** 61 62 // --- init ----------------------------------------------------------------- 63 64 // --- get&set -------------------------------------------------------------- 65 66 // --- business ------------------------------------------------------------- 67 68 // --- object basics -------------------------------------------------------- 69 70 }