View Javadoc
1   /* jSSC (Java Simple Serial Connector) - serial port communication library.
2    * © Alexey Sokolov (scream3r), 2010-2014.
3    *
4    * This file is part of jSSC.
5    *
6    * jSSC is free software: you can redistribute it and/or modify
7    * it under the terms of the GNU Lesser General Public License as published by
8    * the Free Software Foundation, either version 3 of the License, or
9    * (at your option) any later version.
10   *
11   * jSSC is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU Lesser General Public License for more details.
15   *
16   * You should have received a copy of the GNU Lesser General Public License
17   * along with jSSC.  If not, see <http://www.gnu.org/licenses/>.
18   *
19   * If you use jSSC in public project you can inform me about this by e-mail,
20   * of course if you want it.
21   *
22   * e-mail: scream3r.org@gmail.com
23   * web-site: http://scream3r.org | http://code.google.com/p/java-simple-serial-connector/
24   */
25  package net.sf.atmodem4j.spsw;
26  
27  /*
28   * #%L
29   * SPSW Java
30   * %%
31   * Copyright (C) 2009 - 2014 atmodem4j
32   * %%
33   * atmodem4j - A serial port socket wrapper- http://atmodem4j.sourceforge.net/
34   * Copyright (C) 2009-2014, atmodem4j.sf.net, and individual contributors as indicated
35   * by the @authors tag. See the copyright.txt in the distribution for a
36   * full listing of individual contributors.
37   * 
38   * This is free software; you can redistribute it and/or modify it
39   * under the terms of the GNU General Public License as
40   * published by the Free Software Foundation; either version 3 of
41   * the License, or (at your option) any later version.
42   * 
43   * This software is distributed in the hope that it will be useful,
44   * but WITHOUT ANY WARRANTY; without even the implied warranty of
45   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
46   * Lesser General Public License for more details.
47   * 
48   * You should have received a copy of the GNU Lesser General Public
49   * License along with this software; if not, write to the Free
50   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
51   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
52   * #L%
53   */
54  
55  import java.io.IOException;
56  
57  /**
58   *
59   * @author scream3r
60   */
61  public class SerialPortException extends IOException {
62  
63      public SerialPortException(String message) {
64          super(message);
65      }
66      
67      
68  }