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