Skip to content

Commit af156b7

Browse files
authored
Merge pull request #228 from mwarzybok-sumoheavy/feature/SP-534
Feature/sp 534
2 parents b2062aa + e4d2301 commit af156b7

File tree

92 files changed

+206
-277
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+206
-277
lines changed

src/main/java/com/bitpay/sdk/exceptions/BillCreationException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* eg 010001
2727
* </pre>
2828
*
29-
* @see <a href="https://bitpay.com/api/#rest-api-error-codes">Rest API Error Codes</a>
29+
* @see <a href="https://bitpay.readme.io/reference/error-codes">Rest API Error Codes</a>
3030
*/
3131
public class BillCreationException extends BillException {
3232
/**

src/main/java/com/bitpay/sdk/exceptions/BillDeliveryException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* eg 010002
2727
* </pre>
2828
*
29-
* @see <a href="https://bitpay.com/api/#rest-api-error-codes">Rest API Error Codes</a>
29+
* @see <a href="https://bitpay.readme.io/reference/error-codes">Rest API Error Codes</a>
3030
*/
3131
public class BillDeliveryException extends BillException {
3232
/**

src/main/java/com/bitpay/sdk/exceptions/BillException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* @see com.bitpay.sdk.exceptions.BillDeliveryException
1313
* @see com.bitpay.sdk.exceptions.BillUpdateException
1414
*
15-
* @see <a href="https://bitpay.com/api/#rest-api-error-codes">Rest API Error Codes</a>
15+
* @see <a href="https://bitpay.readme.io/reference/error-codes">Rest API Error Codes</a>
1616
*/
1717
public class BillException extends BitPayException {
1818
/**

src/main/java/com/bitpay/sdk/exceptions/BillQueryException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* eg 020002
2727
* </pre>
2828
*
29-
* @see <a href="https://bitpay.com/api/#rest-api-error-codes">Rest API Error Codes</a>
29+
* @see <a href="https://bitpay.readme.io/reference/error-codes">Rest API Error Codes</a>
3030
*/
3131
public class BillQueryException extends BillException {
3232
/**

src/main/java/com/bitpay/sdk/exceptions/BillUpdateException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* eg 030002
2727
* </pre>
2828
*
29-
* @see <a href="https://bitpay.com/api/#rest-api-error-codes">Rest API Error Codes</a>
29+
* @see <a href="https://bitpay.readme.io/reference/error-codes">Rest API Error Codes</a>
3030
*/
3131
public class BillUpdateException extends BillException {
3232
/**

src/main/java/com/bitpay/sdk/exceptions/BitPayException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* General BitPay Exception which is inherited by all other exceptions.
1111
*
12-
* @see <a href="https://bitpay.com/api/#rest-api-error-codes">Rest API Error Codes</a>
12+
* @see <a href="https://bitpay.readme.io/reference/error-codes">Rest API Error Codes</a>
1313
*/
1414
public class BitPayException extends ClientProtocolException {
1515
private static final long serialVersionUID = -7186627969477257933L;

src/main/java/com/bitpay/sdk/exceptions/CurrencyException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Exception which is extended by other exceptions related with Currency.
99
*
1010
* @see com.bitpay.sdk.exceptions.CurrencyQueryException
11-
* @see <a href="https://bitpay.com/api/#rest-api-error-codes">Rest API Error Codes</a>
11+
* @see <a href="https://bitpay.readme.io/reference/error-codes">Rest API Error Codes</a>
1212
*/
1313
public class CurrencyException extends BitPayException {
1414
/**

src/main/java/com/bitpay/sdk/exceptions/CurrencyQueryException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* eg 020001
2727
* </pre>
2828
*
29-
* @see <a href="https://bitpay.com/api/#rest-api-error-codes">Rest API Error Codes</a>
29+
* @see <a href="https://bitpay.readme.io/reference/error-codes">Rest API Error Codes</a>
3030
*/
3131
public class CurrencyQueryException extends CurrencyException {
3232
/**

src/main/java/com/bitpay/sdk/exceptions/InvoiceCancellationException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* eg 040101
3838
* </pre>
3939
*
40-
* @see <a href="https://bitpay.com/api/#rest-api-error-codes">Rest API Error Codes</a>
40+
* @see <a href="https://bitpay.readme.io/reference/error-codes">Rest API Error Codes</a>
4141
*/
4242
public class InvoiceCancellationException extends InvoiceException {
4343
/**

src/main/java/com/bitpay/sdk/exceptions/InvoiceCreationException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* eg 010101
3838
* </pre>
3939
*
40-
* @see <a href="https://bitpay.com/api/#rest-api-error-codes">Rest API Error Codes</a>
40+
* @see <a href="https://bitpay.readme.io/reference/error-codes">Rest API Error Codes</a>
4141
*/
4242
public class InvoiceCreationException extends InvoiceException {
4343
/**

0 commit comments

Comments
 (0)