001/*
002 * Copyright 2002-2017 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;
020import org.springframework.lang.Nullable;
021
022/**
023 * Thrown by {@link ScriptUtils} if an SQL script cannot be properly parsed.
024 *
025 * @author Sam Brannen
026 * @since 4.0.3
027 */
028@SuppressWarnings("serial")
029public class ScriptParseException extends ScriptException {
030
031        /**
032         * Construct a new {@code ScriptParseException}.
033         * @param message detailed message
034         * @param resource the resource from which the SQL script was read
035         */
036        public ScriptParseException(String message, @Nullable EncodedResource resource) {
037                super(buildMessage(message, resource));
038        }
039
040        /**
041         * Construct a new {@code ScriptParseException}.
042         * @param message detailed message
043         * @param resource the resource from which the SQL script was read
044         * @param cause the underlying cause of the failure
045         */
046        public ScriptParseException(String message, @Nullable EncodedResource resource, @Nullable Throwable cause) {
047                super(buildMessage(message, resource), cause);
048        }
049
050
051        private static String buildMessage(String message, @Nullable EncodedResource resource) {
052                return String.format("Failed to parse SQL script from resource [%s]: %s",
053                                (resource == null ? "<unknown>" : resource), message);
054        }
055
056}