1 20 21 package org.jacorb.idl; 22 23 27 28 29 class IllegalRedefinition 30 extends NameAlreadyDefined 31 { 32 33 public String oldDef; 34 public String newDef; 35 36 public IllegalRedefinition() 37 { 38 } 39 40 public IllegalRedefinition( String s ) 41 { 42 super( s ); 43 newDef = s; 44 } 45 46 public IllegalRedefinition( String oldDef, String newDef ) 47 { 48 super( oldDef ); 49 this.oldDef = oldDef; 50 this.newDef = newDef; 51 } 52 53 54 } 55 56 57 58 59 60 | Popular Tags |