001package io.konik.sdk.http;
002
003public class InsufficientCreditsAmountException extends RuntimeException {
004
005        public InsufficientCreditsAmountException() {
006                super("Request cannot be continued due to insufficient credits amount. Add some credits to your account before you try again.");
007        }
008}