summaryrefslogtreecommitdiffstats
path: root/keystore/java/android/security/KeyStoreException.java
diff options
context:
space:
mode:
authorAlex Klyubin <klyubin@google.com>2015-04-02 15:53:46 -0700
committerAlex Klyubin <klyubin@google.com>2015-04-02 15:57:27 -0700
commitb4834ae3fa09e8013f7ab743a12def063ae999e3 (patch)
treed9985a4927997a3fd00f25132a4f5579aec39272 /keystore/java/android/security/KeyStoreException.java
parent3cc9e5d68d89ea1ffa79ad6981585bc46362c4a7 (diff)
downloadframeworks_base-b4834ae3fa09e8013f7ab743a12def063ae999e3.zip
frameworks_base-b4834ae3fa09e8013f7ab743a12def063ae999e3.tar.gz
frameworks_base-b4834ae3fa09e8013f7ab743a12def063ae999e3.tar.bz2
Rename KeymasterException to KeyStoreException.
The code in question talks to KeyStore which returns error codes which are a mix of keystore and keymaster error codes. To better match the layering of KeyStore on top of keystore and keymaster, this CL renames KeymasterException into KeyStoreException. It also adds human-readable error messages to exceptions raised by keystore rather than keymaster (e.g., key not found). Bug: 18088752 Change-Id: I4cd1235e16518c9f2e8c5557a457774c6e687b88
Diffstat (limited to 'keystore/java/android/security/KeyStoreException.java')
-rw-r--r--keystore/java/android/security/KeyStoreException.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/keystore/java/android/security/KeyStoreException.java b/keystore/java/android/security/KeyStoreException.java
new file mode 100644
index 0000000..88e768c
--- /dev/null
+++ b/keystore/java/android/security/KeyStoreException.java
@@ -0,0 +1,37 @@
+/*
+ * Copyright (C) 2015 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.security;
+
+/**
+ * KeyStore/keymaster exception with positive error codes coming from the KeyStore and negative
+ * ones from keymaster.
+ *
+ * @hide
+ */
+public class KeyStoreException extends Exception {
+
+ private final int mErrorCode;
+
+ public KeyStoreException(int errorCode, String message) {
+ super(message);
+ mErrorCode = errorCode;
+ }
+
+ public int getErrorCode() {
+ return mErrorCode;
+ }
+}