CloudNet-v2
CloudNet-v2 copied to clipboard
Cloud Network Environment Technology
Add for the legibility a template for pull-requests. The layout is good to have a better overview for the changes
Please build in local wrapper the CLoudNetApi, the download use the old version if some changes included
``` java.util.zip.ZipException: error in opening zip file at java.util.zip.ZipFile.open(Native Method) at java.util.zip.ZipFile.(ZipFile.java:230) at java.util.zip.ZipFile.(ZipFile.java:160) at java.util.zip.ZipFile.(ZipFile.java:174) at de.dytanic.cloudnetcore.web.api.v1.WebsiteDeployment.post(WebsiteDeployment.java:88) at de.dytanic.cloudnet.web.server.handler.MethodWebHandler.handleRequest(MethodWebHandler.java:56) at de.dytanic.cloudnet.web.server.WebServerHandler.channelRead(WebServerHandler.java:78) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:374) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:360) at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:352) at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:102)...
Following lines are a example to use a stream to convert error into string ```java StringWriter writer = new StringWriter(); e.printStackTrace(new PrintWriter(writer)); String stackTrace = writer.toString(); ``` With this lines...