1 package org.omg.mof.Reflective; 2 3 4 10 11 public final class BadPosition extends org.omg.CORBA.UserException  12 { 13 public int current_size = (int)0; 14 15 public BadPosition () 16 { 17 super(BadPositionHelper.id()); 18 } 20 public BadPosition (int _current_size) 21 { 22 super(BadPositionHelper.id()); 23 current_size = _current_size; 24 } 26 27 public BadPosition (String $reason, int _current_size) 28 { 29 super(BadPositionHelper.id() + " " + $reason); 30 current_size = _current_size; 31 } 33 } | Popular Tags |