From 2b7cc07410ff7d8d14f12a161297ad8394768114 Mon Sep 17 00:00:00 2001 From: Nelson Tavares de Sousa <stu103017@mail.uni-kiel.de> Date: Mon, 5 Oct 2015 14:03:37 +0200 Subject: [PATCH] moved class from teetime --- .../teetime/stage/util/MappingException.java | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/main/java/teetime/stage/util/MappingException.java 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 00000000..37f9b74f --- /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); + } + +} -- GitLab