01: /*
02: * CONFIDENTIAL AND PROPRIETARY SOURCE CODE OF
03: * NETSCAPE COMMUNICATIONS CORPORATION
04: *
05: * Copyright (c) 1996 Netscape Communications Corporation.
06: * All Rights Reserved.
07: * Use of this Source Code is subject to the terms of the applicable
08: * license agreement from Netscape Communications Corporation.
09: */
10:
11: package communications;
12:
13: /**
14: Messages file for the communications package.
15: *
16: */
17: public class Messages {
18: public final static String URLCONNECTIONOPENFAIL = "Failed to open URLconnection";
19:
20: public final static String DATAOUTPUTSTREAMOPENFAIL = "Failed to open DataOutputStream";
21:
22: public final static String DATAOUTPUTSTREAMCLOSEFAIL = "Failed to close DataOutputStream";
23:
24: public final static String DATAOUTPUTSTREAMWRITEFAIL = "Failed to write to DataOutputStream";
25:
26: public final static String DATAINPUTSTREAMOPENFAIL = "Failed to open DataInputStream";
27:
28: public final static String DATAINPUTSTREAMCLOSEFAIL = "Failed to close DataInputStream";
29:
30: public final static String DATAINPUTSTREAMREADFAIL = "Failed to read DataInputStream";
31:
32: public final static String MALFORMEDURL = "Malformed URL";
33: }
|