public class

ConfigurationException

extends Exception
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ fm.audiobox.core.config.ConfigurationException

Class Overview

This exception is thrown when there is a configuration problem. This can arise if there are configuration problems with the client, or if configuration information required to access AudioBox is malformed or missing.

Summary

Public Constructors
ConfigurationException(String explanation)
Constructs a new instance of ConfigurationException using an explanation.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public ConfigurationException (String explanation)

Constructs a new instance of ConfigurationException using an explanation. All other fields default to null.

Parameters
explanation A possibly null string containing additional detail about this exception.
See Also