1 11 package org.eclipse.core.commands; 12 13 import org.eclipse.core.commands.common.CommandException; 14 15 22 public class ParameterValueConversionException extends CommandException { 23 24 27 private static final long serialVersionUID = 4703077729505066104L; 28 29 35 public ParameterValueConversionException(final String message) { 36 super(message); 37 } 38 39 48 public ParameterValueConversionException(final String message, 49 final Throwable cause) { 50 super(message, cause); 51 } 52 } 53 | Popular Tags |