/******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.exception; import static java.lang.Math.min; /** * @author Anatoliy Bazko */ @SuppressWarnings("serial") public class GdbParseException extends GdbException { public static final int MAX_OUTPUT_LENGTH = 80; public GdbParseException(Class clazz, String output) { super("Can't parse '" + output.substring(0, min(output.length(), MAX_OUTPUT_LENGTH)) + "' into " + clazz.getSimpleName()); } }