mirror of
https://github.com/samsonjs/media.git
synced 2026-04-04 11:05:47 +00:00
Make DrmSessionException constructor public to enable creating custom DrmSessionManager implementations.
This commit is contained in:
parent
65d4b1cf5c
commit
f8bb329ef2
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ public interface DrmSession<T extends ExoMediaCrypto> {
|
|||
/** Wraps the exception which is the cause of the error state. */
|
||||
class DrmSessionException extends Exception {
|
||||
|
||||
DrmSessionException(Exception e) {
|
||||
public DrmSessionException(Exception e) {
|
||||
super(e);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue