Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: jcsq/CSPortException.java


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  }