1 package jcsq; 2 3 public class CSPortException extends Exception 4 { 5 public CSPortException(String port) 6 { 7 super("The port to specified host ("+port+") is not correct!"); 8 } 9 10 }