3031323334353637
System.out.println(message); } } protected void raiseError(String message) { log(message); throw new TCKException(message); }
3637383940414243
} void raiseError(String message, Exception e) { log(message); throw new TCKException(message, e); }
132133134135136137138139140141142
} } catch (Exception e) { e.printStackTrace(); throw new TCKException("Exception using configure method " + method, e); } }
108109110111112113114115
} } String originator="<intial setup>"; if(original.recorder!=null) originator=original.recorder.toString(); throw new TCKException("unable to register key "+key+" for "+method+" value conflicts with previously registered value from "+originator); } }
310311312313314315316317318
} } catch (Exception exp) { throw new TCKException(exp); } }
3435363738394041
protected void report(Exception cause, String message) { throw new TCKException(message,cause); }
3839404142434445
protected void report(Exception cause, String message) { throw new TCKException(message,cause); } protected void report(String message) { throw new TCKException(message); }
6364656667686970
} else { // key clash Method original=(Method) variables.get(key); throw new TCKException("unable to register key "+key+" for "+method+" value conflicts with previously registered key from "+original); } }
606162636465666768
} } } catch (Exception e) { e.printStackTrace(); throw new TCKException("Exception using envvar method " + method, e); } }
117118119120121122123124125
} } } catch (Exception e) { e.printStackTrace(); throw new TCKException("Exception using jvmarg method " + method, e); } }