package jetbrains.mps.ide.migration.wizard; /*Generated by MPS */ import jetbrains.mps.lang.migration.runtime.base.Problem; import com.intellij.openapi.progress.ProgressIndicator; import java.util.Collections; public class MigrationExceptionError extends MigrationErrorDescriptor { public MigrationExceptionError() { } public MigrationExceptionError(Throwable t) { // todo } public String getMessage() { return "Exception occurred while running migration. See log file for details."; } public Iterable<Problem> getProblems(ProgressIndicator progressIndicator) { return Collections.<Problem>emptyList(); } @Override public boolean canIgnore() { return false; } }