Skip to content

Commit

Permalink
Refactor InvalidArgumentException to kotlin
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Noriega committed Jan 19, 2023
1 parent 6014b5f commit 34220bf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package com.braintreepayments.api

import java.lang.Exception

/**
* Error thrown when arguments provided to a method are invalid.
* @param message the error message
*/
class InvalidArgumentException internal constructor(message: String?) : Exception(message)

0 comments on commit 34220bf

Please sign in to comment.