diff --git a/src/main/java/teetime/stage/util/MappingException.java b/src/main/java/teetime/stage/util/MappingException.java new file mode 100644 index 0000000000000000000000000000000000000000..37f9b74fe3c2a3355486b7bb4edac4ae8066b219 --- /dev/null +++ b/src/main/java/teetime/stage/util/MappingException.java @@ -0,0 +1,31 @@ +/** + * Copyright (C) 2015 Christian Wulf, Nelson Tavares de Sousa (http://teetime-framework.github.io) + * + * 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 + * + * 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 teetime.stage.util; + +/** + * @author Christian Wulf + * + * @since 1.10 + */ +public final class MappingException extends Exception { + + private static final long serialVersionUID = 7300752837946139350L; + + public MappingException(final String text) { + super(text); + } + +}