public final class

DirectionsException

extends Exception
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ com.steerpath.sdk.directions.DirectionsException

Class Overview

Exception class used by the DirectionsListener to indicate one or more of the routes failed to be solved. Currently merely wraps Exception.

Summary

Public Constructors
DirectionsException(String s)
Constructor with a message.
DirectionsException(Throwable t)
Constructor wrapping another message
DirectionsException(String s, Throwable t)
Exception constructed with a detailed message and an original exception causing the routing to fail.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public DirectionsException (String s)

Constructor with a message.

Parameters
s the detailed message

public DirectionsException (Throwable t)

Constructor wrapping another message

Parameters
t original exception

public DirectionsException (String s, Throwable t)

Exception constructed with a detailed message and an original exception causing the routing to fail.

Parameters
s the detailed message
t original exception