
com.chrisdempewolf.pinterest.exceptions.PinterestException.kt Maven / Gradle / Ivy
package com.chrisdempewolf.pinterest.exceptions
class PinterestException : RuntimeException {
constructor() : super()
constructor(message: String?) : super(message)
constructor(message: String?, cause: Throwable) : super(message, cause)
constructor(cause: Throwable) : super(cause)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy