Merge changes If0630105,I9d2d5e61,I1cea2a32,Icc05b6a7,Ic57eb4f8, ...
[packetcable.git] / packetcable-driver / src / main / java / org / umu / cops / ospdp / COPSPdpException.java
1 /*\r
2  * Copyright (c) 2004 University of Murcia.  All rights reserved.\r
3  * --------------------------------------------------------------\r
4  * For more information, please see <http://www.umu.euro6ix.org/>.\r
5  */\r
6 \r
7 package org.umu.cops.ospdp;\r
8 \r
9 import org.umu.cops.stack.COPSException;\r
10 \r
11 /**\r
12  * COPS PEP Exception\r
13  *\r
14  * @version COPSPepException.java, v 2.00 2004\r
15  *\r
16  */\r
17 public class COPSPdpException extends COPSException {\r
18 \r
19     /**\r
20      * Creates a <tt>COPSPdpException</tt> with the given message.\r
21      * @param msg    Exception message\r
22      */\r
23     public COPSPdpException(String msg) {\r
24         super(msg);\r
25     }\r
26 \r
27     /**\r
28      * Creates a <tt>COPSPdpException</tt> with the given message and return code.\r
29      * @param msg       Exception message\r
30      * @param retCode   Return code\r
31      */\r
32     public COPSPdpException(String msg, int retCode) {\r
33         super(msg, retCode);\r
34     }\r
35 \r
36     /**\r
37      * Creates a <tt>COPSPdpException</tt> with the given message and throwable.\r
38      * @param msg       Exception message\r
39      * @param t         the Throwable\r
40      */\r
41     public COPSPdpException(String msg, Throwable t) {\r
42         super(msg, t);\r
43     }\r
44 \r
45 }\r