1 7 34 35 package com.sun.tools.example.debug.bdi; 36 37 import java.util.EventObject ; 38 39 public class SpecErrorEvent extends SpecEvent { 40 41 private Exception reason; 42 43 public SpecErrorEvent(EventRequestSpec eventRequestSpec, 44 Exception reason) { 45 super(eventRequestSpec); 46 this.reason = reason; 47 } 48 49 public Exception getReason() { 50 return reason; 51 } 52 } 53 | Popular Tags |