"Cannot get security manager for Kiji instance %s in state %s.", this, state);
if (null == mSecurityManager) {
if (isSecurityEnabled()) {
mSecurityManager = CassandraKijiSecurityManager.create(mURI);
} else {
throw new KijiSecurityException(
String.format(
"Can not create a KijiSecurityManager for security version %s."
+ " Version must be %s or higher.",
mSystemTable.getSecurityVersion(), Versions.MIN_SECURITY_VERSION));
}