001 package org.LiveGraph.dataFile.common; 002 003 import java.io.IOException; 004 005 public class PipeNotConnectedException extends IOException { 006 007 public PipeNotConnectedException() { 008 super(); 009 } 010 011 public PipeNotConnectedException(String msg) { 012 super(null == msg ? "" : msg); 013 } 014 015 }