blob: c4b4af53d78e81895caac155dadf7cac14df2e85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.impl.galagonotification;
/**
* Implements <tt>Exception</tt> for D-Bus errors reported through the native
* <tt>DBusError</tt> structure.
*
* @author Lubomir Marinov
*/
public class DBusException
extends Exception
{
/**
* Silences a serialization warning. Besides, we don't have fields of our
* own so the default serialization routine will always work for us.
*/
private static final long serialVersionUID = 0;
/**
* Initializes a new <tt>DBusException</tt> instance with the specified
* detail message.
*
* @param message the detail message to later be reported by the new
* instance through its {@link #getMessage()}
*/
public DBusException(String message)
{
super(message);
}
}
|