source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Adapters/General/MpiLib/src/gov/hhs/fha/nhinc/mpilib/UnableToInitializeMpi.java@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 873 bytes
Line 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5package gov.hhs.fha.nhinc.mpilib;
6
7import org.apache.commons.logging.Log;
8import org.apache.commons.logging.LogFactory;
9
10/**
11 *
12 * @author rayj
13 */
14class UnableToInitializeMpi extends RuntimeException {
15 private static Log log = LogFactory.getLog(UnableToInitializeMpi.class);
16
17 public UnableToInitializeMpi() {
18 super();
19 log.info("UnableToInitializeMpi Initialized with no arguments");
20 }
21
22 public UnableToInitializeMpi(String message) {
23 super(message);
24 log.info("UnableToInitializeMpi Initialized with message argument");
25 }
26
27 public UnableToInitializeMpi(String message, Throwable cause) {
28 super(message, cause);
29 log.info("UnableToInitializeMpi Initialized with message and cause arguments");
30 }
31}
Note: See TracBrowser for help on using the repository browser.