mirror of
https://github.com/samsonjs/media.git
synced 2026-03-30 10:15:48 +00:00
Merge pull request #2464 from jschamburger/dev-v2
Make DrmSessionException constructor public to enable creating custom DrmSessionManager implementations.
This commit is contained in:
commit
26f4e528d5
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