Package org.spongepowered.api.profile
Class ProfileNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.spongepowered.api.profile.ProfileNotFoundException
- All Implemented Interfaces:
- Serializable
Thrown by a profile lookup service if a profile does not exist.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs a newProfileNotFoundException.ProfileNotFoundException(String message) Constructs a newProfileNotFoundExceptionwith the specified message.ProfileNotFoundException(String message, Throwable cause) Constructs a newProfileNotFoundExceptionwith the specified message and cause.Constructs a newProfileNotFoundExceptionwith the specified cause and a null message.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ProfileNotFoundExceptionpublic ProfileNotFoundException()Constructs a newProfileNotFoundException.
- 
ProfileNotFoundExceptionConstructs a newProfileNotFoundExceptionwith the specified message.- Parameters:
- message- The exception message
 
- 
ProfileNotFoundExceptionConstructs a newProfileNotFoundExceptionwith the specified cause and a null message.- Parameters:
- cause- The cause of this exception
 
- 
ProfileNotFoundExceptionConstructs a newProfileNotFoundExceptionwith the specified message and cause.- Parameters:
- message- The exception message
- cause- The cause of this exception
 
 
-