This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.show-for-large { | |
border: 1px solid green; | |
} | |
.hide-for-large { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/fstab: static file system information. | |
# | |
# Use 'blkid' to print the universally unique identifier for a device; this may | |
# be used with UUID= as a more robust way to name devices that works even if | |
# disks are added and removed. See fstab(5). | |
# | |
# <file system> <mount point> <type> <options> <dump> <pass> | |
/dev/mapper/luks-a03f75ee-2af7-40f4-bba5-5d9d241afc73 / ext4 defaults,noatime,discard 0 1 | |
tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package errortest.de.joergi.errors; | |
import org.springframework.web.bind.annotation.ControllerAdvice; | |
import org.springframework.web.bind.annotation.ExceptionHandler; | |
import lombok.extern.slf4j.Slf4j; | |
@Slf4j | |
@ControllerAdvice | |
public class ErrorInterceptor { |