Skip to content

Commit 11b685d

Browse files
committed
Api reference generated
1 parent 25d3bb3 commit 11b685d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ test/Entryreport.html
1212
test/Entriesreport.html
1313
test/ImageTransformreport.html
1414
test/result.json
15-
examples/index.php
15+
examples/index.php
16+
.DS_Store

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ You can use the Image Delivery API functions in this SDK as well. Here are a few
124124

125125
### The MIT License (MIT)
126126

127-
Copyright © 2012-2019 [Contentstack](https://www.contentstack.com/). All Rights Reserved
127+
Copyright © 2012-2020 [Contentstack](https://www.contentstack.com/). All Rights Reserved
128128

129129

130130
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

src/lib/models/csexception.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class CSException extends \Exception {
1212

1313
function __construct($error, $http_code = 412) {
1414
$error = json_decode($error, true);
15-
$this->error_message = (isset($error['error_message'])) ? $error['error_message'] : "It seems Built.io Contentstack is behaving badly. Please contact support@contentstack.io.";
15+
$this->error_message = (isset($error['error_message'])) ? $error['error_message'] : "It seems Contentstack is behaving badly. Please contact support@contentstack.io.";
1616
$this->error_code = (isset($error['error_code'])) ? $error['error_code'] : null;
1717
$this->errors = (isset($error['errors'])) ? $error['errors'] : array();
1818
$this->http_code = $http_code;

0 commit comments

Comments
 (0)