We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e838347 commit e8858e7Copy full SHA for e8858e7
android/src/main/java/android/print/PdfConverter.java
@@ -90,6 +90,22 @@ public void onWriteFinished(PageRange[] pages) {
90
destroy();
91
}
92
93
+
94
+ @Override
95
+ public void onWriteFailed(CharSequence error) {
96
+ String errorResult = "Please retry, Error occurred generating the pdf";
97
+ if (error != null) {
98
+ errorResult = error.toString();
99
+ }
100
+ mPromise.reject(errorResult);
101
+ destroy();
102
103
104
105
+ public void onWriteCancelled() {
106
107
108
109
});
110
111
0 commit comments