1 11 package org.eclipse.ui.commands; 12 13 23 public final class ExecutionException extends CommandException { 24 25 30 private static final long serialVersionUID = 3258130262767448120L; 31 32 41 public ExecutionException(String message, Throwable cause) { 42 super(message, cause); 43 } 44 45 54 public ExecutionException(final org.eclipse.core.commands.ExecutionException e) { 55 super(e.getMessage(), e); 56 } 57 } 58 | Popular Tags |