public MIInfo getMIInfo() throws MIException { MIInfo info = null; MIOutput out = getMIOutput(); if (out != null) { info = new MIStackListFramesInfo(out); if (info.isError()) { throwMIException(info, out); } } return info; }
@Override public MIInfo getMIInfo() throws MIException { MIInfo info = null; MIOutput out = getMIOutput(); if (out != null) { info = new CLIInfoSharedLibraryInfo(out); if (info.isError()) { throwMIException(info, out); } } return info; }