mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-04 08:08:55 +01:00 
			
		
		
		
	Add documentation for HttpException
Corresponds with https://github.com/tachiyomiorg/extensions-lib/pull/12
This commit is contained in:
		@@ -143,4 +143,11 @@ fun <T> decodeFromJsonResponse(
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Exception that handles HTTP codes considered not successful by OkHttp.
 | 
			
		||||
 * Use it to have a standardized error message in the app across the extensions.
 | 
			
		||||
 *
 | 
			
		||||
 * @since extensions-lib 1.5
 | 
			
		||||
 * @param code [Int] the HTTP status code
 | 
			
		||||
 */
 | 
			
		||||
class HttpException(val code: Int) : IllegalStateException("HTTP error $code")
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user