You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
poker-analytics/app/src/main/java/net/pokeranalytics/android/exceptions/Exceptions.kt

13 lines
270 B

package net.pokeranalytics.android.exceptions
class ModelException(message: String) : Exception(message) {
}
class FormattingException(message: String) : Exception(message) {
}
class RowRepresentableEditDescriptorException(message: String) : Exception(message) {
}