/*
 * Copyright 2012-2020 the original author or authors.
 *
 * Licensed 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
 *
 *      https://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 org.springframework.boot.context.config;

import java.io.File;
import java.nio.file.Files;
import java.nio.file.Path;

import org.springframework.boot.origin.Origin;
import org.springframework.core.io.Resource;
import org.springframework.util.Assert;

ConfigDataNotFoundException thrown when a ConfigDataResource cannot be found.
Author:Phillip Webb
Since:2.4.0
/** * {@link ConfigDataNotFoundException} thrown when a {@link ConfigDataResource} cannot be * found. * * @author Phillip Webb * @since 2.4.0 */
public class ConfigDataResourceNotFoundException extends ConfigDataNotFoundException { private final ConfigDataResource resource; private final ConfigDataLocation location;
Create a new ConfigDataResourceNotFoundException instance.
Params:
  • resource – the resource that could not be found
/** * Create a new {@link ConfigDataResourceNotFoundException} instance. * @param resource the resource that could not be found */
public ConfigDataResourceNotFoundException(ConfigDataResource resource) { this(resource, null); }
Create a new ConfigDataResourceNotFoundException instance.
Params:
  • resource – the resource that could not be found
  • cause – the exception cause
/** * Create a new {@link ConfigDataResourceNotFoundException} instance. * @param resource the resource that could not be found * @param cause the exception cause */
public ConfigDataResourceNotFoundException(ConfigDataResource resource, Throwable cause) { this(resource, null, cause); } private ConfigDataResourceNotFoundException(ConfigDataResource resource, ConfigDataLocation location, Throwable cause) { super(getMessage(resource, location), cause); Assert.notNull(resource, "Resource must not be null"); this.resource = resource; this.location = location; }
Return the resource that could not be found.
Returns:the resource
/** * Return the resource that could not be found. * @return the resource */
public ConfigDataResource getResource() { return this.resource; }
Return the original location that was resolved to determine the resource.
Returns:the location or null if no location is availble
/** * Return the original location that was resolved to determine the resource. * @return the location or {@code null} if no location is availble */
public ConfigDataLocation getLocation() { return this.location; } @Override public Origin getOrigin() { return Origin.from(this.location); } @Override public String getReferenceDescription() { return getReferenceDescription(this.resource, this.location); }
Create a new ConfigDataResourceNotFoundException instance with a location.
Params:
  • location – the location to set
Returns:a new ConfigDataResourceNotFoundException instance
/** * Create a new {@link ConfigDataResourceNotFoundException} instance with a location. * @param location the location to set * @return a new {@link ConfigDataResourceNotFoundException} instance */
ConfigDataResourceNotFoundException withLocation(ConfigDataLocation location) { return new ConfigDataResourceNotFoundException(this.resource, location, getCause()); } private static String getMessage(ConfigDataResource resource, ConfigDataLocation location) { return String.format("Config data %s cannot be found", getReferenceDescription(resource, location)); } private static String getReferenceDescription(ConfigDataResource resource, ConfigDataLocation location) { String description = String.format("resource '%s'", resource); if (location != null) { description += String.format(" via location '%s'", location); } return description; }
Throw a ConfigDataNotFoundException if the specified Path does not exist.
Params:
  • resource – the config data resource
  • pathToCheck – the path to check
/** * Throw a {@link ConfigDataNotFoundException} if the specified {@link Path} does not * exist. * @param resource the config data resource * @param pathToCheck the path to check */
public static void throwIfDoesNotExist(ConfigDataResource resource, Path pathToCheck) { throwIfDoesNotExist(resource, Files.exists(pathToCheck)); }
Throw a ConfigDataNotFoundException if the specified File does not exist.
Params:
  • resource – the config data resource
  • fileToCheck – the file to check
/** * Throw a {@link ConfigDataNotFoundException} if the specified {@link File} does not * exist. * @param resource the config data resource * @param fileToCheck the file to check */
public static void throwIfDoesNotExist(ConfigDataResource resource, File fileToCheck) { throwIfDoesNotExist(resource, fileToCheck.exists()); }
Throw a ConfigDataNotFoundException if the specified Resource does not exist.
Params:
  • resource – the config data resource
  • resourceToCheck – the resource to check
/** * Throw a {@link ConfigDataNotFoundException} if the specified {@link Resource} does * not exist. * @param resource the config data resource * @param resourceToCheck the resource to check */
public static void throwIfDoesNotExist(ConfigDataResource resource, Resource resourceToCheck) { throwIfDoesNotExist(resource, resourceToCheck.exists()); } private static void throwIfDoesNotExist(ConfigDataResource resource, boolean exists) { if (!exists) { throw new ConfigDataResourceNotFoundException(resource); } } }