blob: a60f253d5882375fc288f2ed31ecccf7f7219680 [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.syncbase.exception;
/**
* Thrown in response to various inconsistencies in permissions, or unsupported authentication
* provider, or Vanadium errors: NoAccess, NotTrusted, NoExistOrNoAccess, UnauthorizedCreateId,
* InferAppBlessingFailed, InferUserBlessingFailed, InferDefaultPermsFailed, or
* FoundNoConventionalBlessings.
*/
public class SyncbaseSecurityException extends SyncbaseException {
SyncbaseSecurityException(String message, Exception cause) {
super(message, cause);
}
}