blob: ce1d5e7c4fd05ec87c68abb215d2ca4d2ec755f3 [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Dynamic Runtime Environment"
*
* Copyright 2011 GK Software AG.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Stephan Herrmann - Initial API and implementation
**********************************************************************/
package org.objectteams;
/**
* This error is thrown when some generated code falls through a switch
* without finding a requested target method.
*
* @author stephan
*/
public class NoSuchMethodError extends java.lang.NoSuchMethodError {
private static final long serialVersionUID = 8166812526610195056L;
public NoSuchMethodError(int accessId, String className, String accessReason) {
super("Method with internal id "+accessId+" cannot be found in "+className+" for "+accessReason);
}
}