summaryrefslogtreecommitdiff
path: root/javaSE
diff options
context:
space:
mode:
Diffstat (limited to 'javaSE')
-rw-r--r--javaSE/javaSE/src/main/java/com/smartdevicelink/managers/file/FileManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/javaSE/javaSE/src/main/java/com/smartdevicelink/managers/file/FileManager.java b/javaSE/javaSE/src/main/java/com/smartdevicelink/managers/file/FileManager.java
index e994bf2f2..2c672aa28 100644
--- a/javaSE/javaSE/src/main/java/com/smartdevicelink/managers/file/FileManager.java
+++ b/javaSE/javaSE/src/main/java/com/smartdevicelink/managers/file/FileManager.java
@@ -83,7 +83,7 @@ public class FileManager extends BaseFileManager {
} else if (file.getFileData() != null) {
inputStream = new ByteArrayInputStream(file.getFileData());
} else {
- throw new IllegalArgumentException("The SdlFile to upload does not specify its path, URI, or file data");
+ DebugTool.logError(TAG, "The SdlFile to upload does not specify its path, URI, or file data");
}
return inputStream;