/*
* 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 Exception for D-Bus errors reported through the native
* DBusError 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 DBusException 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);
}
}