session-android/app/src/main/java/org/thoughtcrime/securesms/webrtc/PeerConnectionException.kt

6 lines
189 B
Kotlin

package org.thoughtcrime.securesms.webrtc
class PeerConnectionException: Exception {
constructor(error: String?): super(error)
constructor(throwable: Throwable): super(throwable)
}