Class TenantNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.micronaut.multitenancy.exceptions.TenantException
-
- io.micronaut.multitenancy.exceptions.TenantNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class TenantNotFoundException extends TenantException
Thrown when the tenant cannot be found.- Since:
- 1.0.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TenantNotFoundException()Constructs a new Tenant Not Found exception.TenantNotFoundException(java.lang.String message)Constructs a new Tenant Not Found with the specified detail message.TenantNotFoundException(java.lang.String message, java.lang.Throwable cause)Constructs a new Tenant Not Found with the specified detail message.
-
-
-
Constructor Detail
-
TenantNotFoundException
public TenantNotFoundException()
Constructs a new Tenant Not Found exception.
-
TenantNotFoundException
public TenantNotFoundException(java.lang.String message)
Constructs a new Tenant Not Found with the specified detail message.- Parameters:
message- the detail message.
-
TenantNotFoundException
public TenantNotFoundException(java.lang.String message, java.lang.Throwable cause)Constructs a new Tenant Not Found with the specified detail message.- Parameters:
message- the detail message.cause- the cause
-
-