001/*
002 * Copyright 2002-2014 the original author or authors.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *      https://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016
017package org.springframework.jdbc.datasource.init;
018
019import org.springframework.core.io.support.EncodedResource;
020
021/**
022 * Thrown by {@link ScriptUtils} if an SQL script cannot be properly parsed.
023 *
024 * @author Sam Brannen
025 * @since 4.0.3
026 */
027@SuppressWarnings("serial")
028public class ScriptParseException extends ScriptException {
029
030        /**
031         * Construct a new {@code ScriptParseException}.
032         * @param message detailed message
033         * @param resource the resource from which the SQL script was read
034         */
035        public ScriptParseException(String message, EncodedResource resource) {
036                super(buildMessage(message, resource));
037        }
038
039        /**
040         * Construct a new {@code ScriptParseException}.
041         * @param message detailed message
042         * @param resource the resource from which the SQL script was read
043         * @param cause the underlying cause of the failure
044         */
045        public ScriptParseException(String message, EncodedResource resource, Throwable cause) {
046                super(buildMessage(message, resource), cause);
047        }
048
049        private static String buildMessage(String message, EncodedResource resource) {
050                return String.format("Failed to parse SQL script from resource [%s]: %s", (resource == null ? "<unknown>"
051                                : resource), message);
052        }
053
054}