/** * Copyright (C) 2013 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.sesame.graph; import java.util.List; import com.opengamma.sesame.function.Parameter; /** * Exception used when the proposed implementation type is unsuitable. * <p> * For example, the type might be primitive, an array or an inner class. */ public class InvalidImplementationException extends InvalidGraphException { /** Serialization version. */ private static final long serialVersionUID = 1L; /** * Creates an instance * * @param path the path of parameters to the problem, not null * @param message the descriptive message, not null */ /* package */ InvalidImplementationException(List<Parameter> path, String message) { super(path, message); } }