001/* 002 * Copyright (c) 2012-2018 Institut National des Sciences Appliquées de Lyon (INSA Lyon) and others 003 * 004 * This program and the accompanying materials are made available under the 005 * terms of the Eclipse Public License 2.0 which is available at 006 * http://www.eclipse.org/legal/epl-2.0. 007 * 008 * SPDX-License-Identifier: EPL-2.0 009 */ 010 011package org.eclipse.golo.runtime.adapters; 012 013public class AdapterDefinitionProblem extends RuntimeException { 014 015 public AdapterDefinitionProblem(String message) { 016 super(message); 017 } 018 019 public AdapterDefinitionProblem(Throwable cause) { 020 super(cause); 021 } 022 023 public AdapterDefinitionProblem(String message, Throwable cause) { 024 super(message, cause); 025 } 026}