blob: c4a35ece7305ea67384d6df634e9d30ed43f254f [file] [log] [blame]
Jesse Wilson109c1282009-12-08 13:45:25 -08001/*
2 * Copyright (C) 2009 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.google.caliper;
18
19/**
20 * Thrown upon occurrence of a configuration error.
21 */
Jesse Wilsonf062bf42010-01-13 17:12:18 -080022final class ConfigurationException extends RuntimeException {
Jesse Wilson109c1282009-12-08 13:45:25 -080023
Jesse Wilsonf062bf42010-01-13 17:12:18 -080024 ConfigurationException(String s) {
Jesse Wilson109c1282009-12-08 13:45:25 -080025 super(s);
26 }
27
Jesse Wilsonf062bf42010-01-13 17:12:18 -080028 ConfigurationException(Throwable cause) {
Jesse Wilson109c1282009-12-08 13:45:25 -080029 super(cause);
30 }
Jesse Wilsonf062bf42010-01-13 17:12:18 -080031
32 private static final long serialVersionUID = 0;
Jesse Wilson109c1282009-12-08 13:45:25 -080033}