Make DrmSessionException constructor public to enable creating custom…

Make DrmSessionException constructor public to enable creating custom DrmSessionManager implementations.
parent 65d4b1cf
...@@ -31,7 +31,7 @@ public interface DrmSession<T extends ExoMediaCrypto> { ...@@ -31,7 +31,7 @@ public interface DrmSession<T extends ExoMediaCrypto> {
/** Wraps the exception which is the cause of the error state. */ /** Wraps the exception which is the cause of the error state. */
class DrmSessionException extends Exception { class DrmSessionException extends Exception {
DrmSessionException(Exception e) { public DrmSessionException(Exception e) {
super(e); super(e);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment