1 31 package org.objectweb.proactive.core.body.migration; 32 33 import org.objectweb.proactive.core.ProActiveException; 34 35 public class MigrationException extends ProActiveException { 36 37 public MigrationException() { 38 super(); 39 } 40 41 public MigrationException(String s) { 42 super(s); 43 } 44 45 public MigrationException(String s, Throwable t) { 46 super(s, t); 47 } 48 49 public MigrationException(Throwable t) { 50 super(t); 51 } 52 } 53 54 | Popular Tags |