1 31 package org.objectweb.proactive.ext.security; 32 33 import org.objectweb.proactive.core.body.migration.MigrationException; 34 35 36 42 public class SecurityMigrationException extends MigrationException { 43 44 47 public SecurityMigrationException() { 48 super(); 49 } 50 51 54 public SecurityMigrationException(String s) { 55 super(s); 56 } 57 58 62 public SecurityMigrationException(String s, Throwable t) { 63 super(s, t); 64 } 65 66 69 public SecurityMigrationException(Throwable t) { 70 super(t); 71 } 72 } 73 | Popular Tags |