NAME
Net::DHCPv6::X::Internal - Thrown on internal logic errors in the library
VERSION
version 0.001
SYNOPSIS
use Net::DHCPv6;
# Internal exceptions indicate a library bug and are not expected
# under normal use. They propagate through decode_with_error.
my ($msg, $err) = Net::DHCPv6->decode_with_error($bytes);
if ($err && $err->isa('Net::DHCPv6::X::Internal')) {
warn "internal error: " . $err->message;
}
DESCRIPTION
Exception thrown when an internal logic error occurs in the library. This should never happen under normal use and indicates a bug.
See Net::DHCPv6::X.
ALPHA STATUS
ALPHA SOFTWARE. This is an early release. The interface is experimental and subject to change without notice.
AUTHOR
Dean Hamstead <dean@fragfest.com.au>
COPYRIGHT AND LICENSE
This software is Copyright (c) 2026 by Dean Hamstead.
This is free software, licensed under:
The MIT (X11) License