1 11 12 package org.eclipse.core.commands; 13 14 import org.eclipse.core.commands.common.CommandException; 15 16 28 public final class ParameterValuesException extends CommandException { 29 30 33 private static final long serialVersionUID = 3618976793520845623L; 34 35 44 public ParameterValuesException(final String message, final Throwable cause) { 45 super(message, cause); 46 } 47 } 48 | Popular Tags |